Do not hardcode the name of gcc, because its full pathname may have been

specified by top-level configure


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13458 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-05-11 07:42:58 +00:00
parent 8c603ef339
commit 2928a169bb

View File

@ -44,7 +44,7 @@ test_each: $(TESTS)
% : %.s testing.s
@$(ECHO) "Compiling and Linking $< to $*"
$(VERB)gcc -ggdb -L$(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) testing.s -lstkr_runtime -o $* $*.s
$(VERB)$(CC) -ggdb -L$(BUILD_OBJ_ROOT)/lib/$(CONFIGURATION) testing.s -lstkr_runtime -o $* $*.s
%.s : %.bc
@$(ECHO) "Compiling $< to $*.s"