diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/Concrete/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Concrete/Makefile b/test/Concrete/Makefile index 4acfadad..57801c1c 100644 --- a/test/Concrete/Makefile +++ b/test/Concrete/Makefile @@ -19,15 +19,15 @@ include ${LEVEL}/Makefile.common # Compile from X.c to Output/X.ll Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES) - $(LLVMGCCWITHPATH) --emit-llvm $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ + $(LLVMCC) -emit-llvm $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@ # Compile from X.cpp to Output/X.ll Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES) - $(LLVMGXXWITHPATH) --emit-llvm $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ + $(LLVMCXX) -emit-llvm $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ # Compile from X.cc to Output/X.ll Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES) - $(LLVMGXXWITHPATH) --emit-llvm $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@ + $(LLVMCXX) -emit-llvm $(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. @@ -42,7 +42,7 @@ Output/%.bc: %.ll $(LLVMAS) Output/.dir $(LLVMAS) -f $< -o $@ Output/linked_%.bc: Output/%.bc Output/_testingUtils.bc - $(LLVMLD) -disable-opt -link-as-library Output/_testingUtils.bc $< -o $@ + $(LLVMLD) Output/_testingUtils.bc $< -o $@ .PRECIOUS: Output/.dir |