diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-20 22:11:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-20 22:11:45 +0000 |
commit | 98892653e54a6382e0d79bb64b537906a435f23a (patch) | |
tree | 80e851292e3689aa6eefbd9507a966d5d7c75638 /Makefile.common | |
parent | 43bf32e86c2ac98a8fc812ef314c373bfb574ad5 (diff) | |
download | llvm-98892653e54a6382e0d79bb64b537906a435f23a.tar.gz |
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.common')
-rw-r--r-- | Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index 5d7469a9e851..2e85e7013816 100644 --- a/Makefile.common +++ b/Makefile.common @@ -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 |