summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-24 03:44:24 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-24 03:44:24 +0000
commit6a901ecb6f912f54196c29a8e1757ed598faea53 (patch)
tree3f26b7c1c99709a650d37b41e3290bbbf7935c2e /test/Makefile.tests
parent4a25494ee69a4b325ec54fd214a20a571b6ac387 (diff)
downloadllvm-6a901ecb6f912f54196c29a8e1757ed598faea53.tar.gz
llvm-6a901ecb6f912f54196c29a8e1757ed598faea53.tar.bz2
llvm-6a901ecb6f912f54196c29a8e1757ed598faea53.tar.xz
Make sure LLVMGCCWITHPATH is used instead of just LLVMGCC so that the
CFE tools can find the correct LLVM tools to invoke. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index c49cedd5cf..c597de47fa 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -50,15 +50,15 @@ clean::
# 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.