diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-11 07:42:58 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-05-11 07:42:58 +0000 |
commit | f120c9d69b9078cd3850887e701d11891ef16eff (patch) | |
tree | 862bd08530063190aa365d8c108cefb912a90d7d /llvm/projects/Stacker | |
parent | b6b0f462202b47deb8e6f63b895ca2339763bf95 (diff) | |
download | bcm5719-llvm-f120c9d69b9078cd3850887e701d11891ef16eff.tar.gz bcm5719-llvm-f120c9d69b9078cd3850887e701d11891ef16eff.zip |
Do not hardcode the name of gcc, because its full pathname may have been
specified by top-level configure
llvm-svn: 13458
Diffstat (limited to 'llvm/projects/Stacker')
-rw-r--r-- | llvm/projects/Stacker/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/projects/Stacker/test/Makefile b/llvm/projects/Stacker/test/Makefile index 2f7ff8a1849..64f76cd611c 100644 --- a/llvm/projects/Stacker/test/Makefile +++ b/llvm/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" |