summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-20 22:11:45 +0000
committerChris Lattner <sabre@nondot.org>2003-08-20 22:11:45 +0000
commit98892653e54a6382e0d79bb64b537906a435f23a (patch)
tree80e851292e3689aa6eefbd9507a966d5d7c75638 /Makefile.rules
parent43bf32e86c2ac98a8fc812ef314c373bfb574ad5 (diff)
downloadllvm-98892653e54a6382e0d79bb64b537906a435f23a.tar.gz
llvm-98892653e54a6382e0d79bb64b537906a435f23a.tar.bz2
llvm-98892653e54a6382e0d79bb64b537906a435f23a.tar.xz
Point to the correct cc1/cc1plus binaries
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 5d7469a9e8..2e85e70138 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -320,9 +320,9 @@ TBLGEN := $(LLVMTOOLCURRENT)/tblgen
# The LLVM GCC front-end in C and C++ flavors
#
LLVMGCC := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/gcc
-LCC1 := $(LLVMGCCDIR)/lib/gcc-lib/$(LLVMGCCARCH)/cc1
+LCC1 := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1
LLVMGXX := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/g++
-LCC1XX := $(LLVMGCCDIR)/lib/gcc-lib/$(LLVMGCCARCH)/cc1plus
+LCC1XX := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1plus
#--------------------------------------------------------------------------
# Some of the compiled LLVM tools which are used for compilation of runtime