[llvm-commits] CVS: llvm/projects/Stacker/test/Makefile

Brian Gaeke gaeke at cs.uiuc.edu
Tue May 11 02:44:01 PDT 2004


Changes in directory llvm/projects/Stacker/test:

Makefile updated: 1.3 -> 1.4

---
Log message:

Do not hardcode the name of gcc, because its full pathname may have been
specified by top-level configure 


---
Diffs of the changes:  (+1 -1)

Index: llvm/projects/Stacker/test/Makefile
diff -u llvm/projects/Stacker/test/Makefile:1.3 llvm/projects/Stacker/test/Makefile:1.4
--- llvm/projects/Stacker/test/Makefile:1.3	Mon Dec  8 01:07:56 2003
+++ llvm/projects/Stacker/test/Makefile	Tue May 11 02:42:58 2004
@@ -44,7 +44,7 @@
 
 % : %.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"





More information about the llvm-commits mailing list