B&I's buildit forces a PATH that omits /Developer. Temporarily add

/Developer/usr/bin to the PATH when looking for llvm-gcc.

llvm-svn: 83028
This commit is contained in:
Stuart Hastings 2009-09-28 23:42:38 +00:00
parent 78cfcb56a1
commit 69d64f8e60
1 changed files with 3 additions and 1 deletions

View File

@ -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 \