[llvm-commits] CVS: llvm-test/Makefile.rules
Nate Begeman
natebegeman at mac.com
Tue Feb 28 10:22:37 PST 2006
Changes in directory llvm-test:
Makefile.rules updated: 1.8 -> 1.9
---
Log message:
Use the input LLVMGCC/LLVMGXX variables set by Makefile.config instead of
creating our own. Creating our own breaks symlinks.
---
Diffs of the changes: (+2 -2)
Makefile.rules | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm-test/Makefile.rules
diff -u llvm-test/Makefile.rules:1.8 llvm-test/Makefile.rules:1.9
--- llvm-test/Makefile.rules:1.8 Tue Mar 8 16:58:33 2005
+++ llvm-test/Makefile.rules Tue Feb 28 12:22:24 2006
@@ -252,8 +252,8 @@
#--------------------------------------------------------------------------
# The LLVM GCC front-end in C and C++ flavors
#
-LLVMGCC := PATH="$(LLVMTOOLCURRENT):$(PATH)" $(LLVMGCCDIR)/bin/llvm-gcc
-LLVMGXX := PATH="$(LLVMTOOLCURRENT):$(PATH)" $(LLVMGCCDIR)/bin/llvm-g++
+LLVMGCC := PATH="$(LLVMTOOLCURRENT):$(PATH)" $(LLVMGCC)
+LLVMGXX := PATH="$(LLVMTOOLCURRENT):$(PATH)" $(LLVMGXX)
#--------------------------------------------------------------------------
# The compiled LLVM tools
More information about the llvm-commits
mailing list