Updated to use the new Makefile.common.

Replaced the hard-coded compiler variable with the one defined by
Makefile.config.

llvm-svn: 6680
This commit is contained in:
John Criswell 2003-06-11 13:56:55 +00:00
parent 0607d88385
commit e1c78240c2
1 changed files with 3 additions and 3 deletions

View File

@ -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)