From 25c30c36e689f9b74b5c00e6655e743cbba356e4 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 12 Sep 2014 14:59:03 -0700 Subject: Update Concrete test Makefile for LLVM changes. --- test/Concrete/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/Concrete') 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 -- cgit 1.4.1