From: Brian Gaeke Date: Tue, 11 May 2004 07:42:58 +0000 (+0000) Subject: Do not hardcode the name of gcc, because its full pathname may have been X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2928a169bb7e0ac816b6ce2f40bc1f683633b5be;p=oota-llvm.git 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 --- diff --git a/projects/Stacker/test/Makefile b/projects/Stacker/test/Makefile index 2f7ff8a1849..64f76cd611c 100644 --- a/projects/Stacker/test/Makefile +++ b/projects/Stacker/test/Makefile @@ -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"