From: Chris Lattner Date: Thu, 19 Sep 2002 21:33:10 +0000 (+0000) Subject: Native CC compiler has the same problem as CXX compiler. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2ad319c3ba38b3fa6e3798b0751a8301e45c1314;p=oota-llvm.git Native CC compiler has the same problem as CXX compiler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3836 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Makefile.config b/Makefile.config index ad145240913..0bdc74fef15 100644 --- a/Makefile.config +++ b/Makefile.config @@ -13,6 +13,11 @@ # CXX = PATH=/usr/bin /usr/dcs/software/evaluation/bin/g++ +# We have the same problem with the CC binary, which use used by testcases for +# native builds. +# +CC := PATH=/usr/bin $(CC) + # Path to directory where object files should be stored during a build. # Set LLVM_OBJ_DIR to "." if you do not want to use a separate place for # object files.