[llvm-commits] CVS: llvm/test/Makefile.tests

Reid Spencer reid at x10sys.com
Thu Dec 23 19:44:35 PST 2004



Changes in directory llvm/test:

Makefile.tests updated: 1.90 -> 1.91
---
Log message:

Make sure LLVMGCCWITHPATH is used instead of just LLVMGCC so that the 
CFE tools can find the correct LLVM tools to invoke.


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

Index: llvm/test/Makefile.tests
diff -u llvm/test/Makefile.tests:1.90 llvm/test/Makefile.tests:1.91
--- llvm/test/Makefile.tests:1.90	Tue Jul 20 20:31:47 2004
+++ llvm/test/Makefile.tests	Thu Dec 23 21:44:24 2004
@@ -50,15 +50,15 @@
 
 # Compile from X.c to Output/X.ll
 Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
-	-$(LLVMGCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
+	-$(LLVMGCCWITHPATH) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
 
 # Compile from X.cpp to Output/X.ll
 Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
-	-$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
+	-$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
 
 # Compile from X.cc to Output/X.ll
 Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
-	-$(LLVMGXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
+	-$(LLVMGXXWITHPATH) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
 
 # LLVM Assemble from Output/X.ll to Output/X.bc.  Output/X.ll must have come
 # from GCC output, so use GCCAS.






More information about the llvm-commits mailing list