summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorJohn Criswell <criswell@uiuc.edu>2003-06-11 13:56:55 +0000
committerJohn Criswell <criswell@uiuc.edu>2003-06-11 13:56:55 +0000
commit01e6d2a4c7efcb030c58c2fa17f74ab4610b4463 (patch)
tree52c099e0800baea38fd5328596fced717f637b48 /test/Makefile.tests
parent8bff509803b2e18e355bd278820f5a7fcc643fc1 (diff)
downloadllvm-01e6d2a4c7efcb030c58c2fa17f74ab4610b4463.tar.gz
llvm-01e6d2a4c7efcb030c58c2fa17f74ab4610b4463.tar.bz2
llvm-01e6d2a4c7efcb030c58c2fa17f74ab4610b4463.tar.xz
Updated to use the new Makefile.common.
Replaced the hard-coded compiler variable with the one defined by Makefile.config. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6680 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 6293946b9a..630bacfb9f 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -31,9 +31,9 @@ endif
.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 @@ FAILURE = $(LEVEL)/test/Failure.sh
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)