mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
B&I's buildit forces a PATH that omits /Developer. Temporarily add
/Developer/usr/bin to the PATH when looking for llvm-gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83028 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dc3d8cc6a6
commit
9ad675893f
@ -90,11 +90,13 @@ cd $DIR/obj-llvm || exit 1
|
||||
# If the user has set CC or CXX, respect their wishes. If not,
|
||||
# compile with LLVM-GCC/LLVM-G++ if available; if LLVM is not
|
||||
# available, fall back to usual GCC/G++ default.
|
||||
savedPATH=$PATH ; PATH="$PATH:/Developer/usr/bin"
|
||||
XTMPCC=$(which llvm-gcc)
|
||||
if [ x$CC = x -a x$XTMPCC != x ] ; then export CC=$XTMPCC ; fi
|
||||
XTMPCC=$(which llvm-g++)
|
||||
if [ x$CXX = x -a x$XTMPCC != x ] ; then export CXX=$XTMPCC ; fi
|
||||
unset XTMPCC
|
||||
PATH=$savedPATH
|
||||
unset XTMPCC savedPATH
|
||||
|
||||
if [ \! -f Makefile.config ]; then
|
||||
$SRC_DIR/configure --prefix=$DT_HOME/local \
|
||||
|
Loading…
x
Reference in New Issue
Block a user