We now look for clang, then llvm-gcc, then gcc as our compiler. We don't need
authorEric Christopher <echristo@apple.com>
Fri, 16 Sep 2011 20:36:20 +0000 (20:36 +0000)
committerEric Christopher <echristo@apple.com>
Fri, 16 Sep 2011 20:36:20 +0000 (20:36 +0000)
this anymore.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139935 91177308-0d34-0410-b5e6-96231b3b80d8

utils/buildit/build_llvm

index ac543fc2ef56865a2a8f0c263ea975d9713473f8..731ca6f28dbc41d00cde3d8fd18fa9599284bb55 100755 (executable)
@@ -110,18 +110,6 @@ if [ "$ARM_HOSTED_BUILD" = yes ]; then
   done
 
   PATH=$DIR/bin:$PATH
-# otherwise, try to use clang if it's available
-elif [ $DARWIN_VERS -gt 9 ]; then
-  # If the user has set CC or CXX, respect their wishes.  If not,
-  # compile with clang/clang++ if available; if LLVM is not
-  # available, fall back to usual GCC/G++ default.
-  savedPATH=$PATH ; PATH="/Developer/usr/bin:$PATH"
-  XTMPCC=$(which clang)
-  if [ x$CC  = x -a x$XTMPCC != x ] ; then export CC=$XTMPCC  ; fi
-  XTMPCC=$(which clang++)
-  if [ x$CXX = x -a x$XTMPCC != x ] ; then export CXX=$XTMPCC ; fi
-  PATH=$savedPATH
-  unset XTMPCC savedPATH
 fi
 
 if [ "$ARM_HOSTED_BUILD" = yes ]; then