summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-05-11 07:42:58 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-05-11 07:42:58 +0000
commit2928a169bb7e0ac816b6ce2f40bc1f683633b5be (patch)
tree6e1f838ed20fe5de48cf4dbdb3577ed3df242df2 /projects
parent8c603ef33903c3cf1e265364583bb0e4e82db15a (diff)
downloadllvm-2928a169bb7e0ac816b6ce2f40bc1f683633b5be.tar.gz
llvm-2928a169bb7e0ac816b6ce2f40bc1f683633b5be.tar.bz2
llvm-2928a169bb7e0ac816b6ce2f40bc1f683633b5be.tar.xz
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
Diffstat (limited to 'projects')
-rw-r--r--projects/Stacker/test/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Stacker/test/Makefile b/projects/Stacker/test/Makefile
index 2f7ff8a184..64f76cd611 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"