[llvm-commits] CVS: llvm/test/Makefile.tests
John Criswell
criswell at cs.uiuc.edu
Wed Jun 11 08:58:01 PDT 2003
Changes in directory llvm/test:
Makefile.tests updated: 1.61 -> 1.62
---
Log message:
Updated to use the new Makefile.common.
Replaced the hard-coded compiler variable with the one defined by
Makefile.config.
---
Diffs of the changes:
Index: llvm/test/Makefile.tests
diff -u llvm/test/Makefile.tests:1.61 llvm/test/Makefile.tests:1.62
--- llvm/test/Makefile.tests:1.61 Wed Jun 4 09:24:50 2003
+++ llvm/test/Makefile.tests Wed Jun 11 08:56:55 2003
@@ -31,9 +31,9 @@
.PRECIOUS: Output/%.llvm
ifdef ENABLE_OPTIMIZED
-TOOLS = $(BUILD_ROOT_TOP)/tools/Release
+TOOLS = $(BUILD_OBJ_ROOT)/tools/Release
else
-TOOLS = $(BUILD_ROOT_TOP)/tools/Debug
+TOOLS = $(BUILD_OBJ_ROOT)/tools/Debug
endif
# LLVM Tool Definitions...
@@ -60,7 +60,7 @@
TESTRUNR = $(LEVEL)/test/TestRunner.sh
# Native Tool Definitions
-NATGCC = /usr/dcs/software/supported/bin/gcc
+NATGCC = $(CC)
CP = /bin/cp -f
## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
More information about the llvm-commits
mailing list