aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-19 21:33:10 +0000
committerChris Lattner <sabre@nondot.org>2002-09-19 21:33:10 +0000
commit2ad319c3ba38b3fa6e3798b0751a8301e45c1314 (patch)
treea60f047af2e6104d2e27862d36be224415aca87e
parent698a13136488d0887476369d79ae0407ba28436c (diff)
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
-rw-r--r--Makefile.config5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.config b/Makefile.config
index ad14524091..0bdc74fef1 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.