[llvm-commits] CVS: llvm-test/Makefile.rules

Reid Spencer reid at x10sys.com
Thu Dec 21 14:57:25 PST 2006



Changes in directory llvm-test:

Makefile.rules updated: 1.21 -> 1.22
---
Log message:

Use the LLVMGCCLIBEXEC variable to get the paths for cc1 and cc1plus 
instead of trying to hack it together from other variables.


---
Diffs of the changes:  (+3 -3)

 Makefile.rules |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm-test/Makefile.rules
diff -u llvm-test/Makefile.rules:1.21 llvm-test/Makefile.rules:1.22
--- llvm-test/Makefile.rules:1.21	Thu Dec 21 00:57:35 2006
+++ llvm-test/Makefile.rules	Thu Dec 21 16:57:10 2006
@@ -774,9 +774,9 @@
 
 endif
 
-LCC1 := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1
-LCC1XX := $(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/cc1plus
-LCOLLECT2 :=$(LLVMGCCDIR)/libexec/gcc/$(LLVMGCCARCH)/collect2 
+LCC1 := $(LLVMGCCLIBEXEC)/cc1
+LCC1XX := $(LLVMGCCLIBEXEC)/cc1plus
+LCOLLECT2 :=$(LLVMGCCLIBEXEC)/collect2 
 
 
 #---------------------------------------------------------






More information about the llvm-commits mailing list