[llvm-commits] [test-suite] r62094 - /test-suite/trunk/Makefile.tests

Chris Lattner clattner at apple.com
Mon Jan 12 13:20:26 PST 2009


On Jan 12, 2009, at 10:59 AM, Dale Johannesen wrote:

> Author: johannes
> Date: Mon Jan 12 12:59:54 2009
> New Revision: 62094
>
> URL: http://llvm.org/viewvc/llvm-project?rev=62094&view=rev
> Log:
> Echo commmand line flags of initial (->.bc) compilation.

Dale, please don't do this.  If you want to see these options, please  
build with 'make VERBOSE=1'

-Chris

>
>
>
> Modified:
>    test-suite/trunk/Makefile.tests
>
> Modified: test-suite/trunk/Makefile.tests
> URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.tests?rev=62094&r1=62093&r2=62094&view=diff
>
> = 
> = 
> = 
> = 
> = 
> = 
> = 
> = 
> ======================================================================
> --- test-suite/trunk/Makefile.tests (original)
> +++ test-suite/trunk/Makefile.tests Mon Jan 12 12:59:54 2009
> @@ -39,32 +39,32 @@
>
> # Compile from X.c to Output/X.bc
> Output/%.bc: %.c $(LCC1) Output/.dir $(INCLUDES)
> -	@echo Compiling $(notdir $<) to $@
> +	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) to $@
> 	-$(VERB) $(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) -c $< -o $@ -emit-llvm
>
> # Compile from X.cpp to Output/X.bc
> Output/%.bc: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
> -	@echo Compiling $(notdir $<) to $@
> +	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) to $@
> 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) -c $< -o $@ -emit-llvm
>
> # Compile from X.cc to Output/X.bc
> Output/%.bc: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
> -	@echo Compiling $(notdir $<) to $@
> +	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) to $@
> 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) -c $< -o $@ -emit-llvm
>
> # Compile from X.C to Output/X.bc
> Output/%.bc: %.C $(LCC1XX) Output/.dir $(INCLUDES)
> -	@echo Compiling $(notdir $<) to $@
> +	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) to $@
> 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) -c $< -o $@ -emit-llvm
>
> # Compile from X.m to Output/X.bc
> Output/%.bc: %.m $(LCC1) Output/.dir $(INCLUDES)
> -	@echo Compiling $(notdir $<) to $@
> +	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) to $@
> 	-$(VERB) $(LLVMGCC) $(CPPFLAGS) $(CFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) -c $< -o $@ -emit-llvm
>
> # Compile from X.mm to Output/X.bc
> Output/%.bc: %.mm $(LCC1XX) Output/.dir $(INCLUDES)
> -	@echo Compiling $(notdir $<) to $@
> +	@echo Compiling $(notdir $<) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) to $@
> 	-$(VERB) $(LLVMGXX) $(CPPFLAGS) $(CXXFLAGS) $(LOPTFLAGS) $ 
> (TARGET_FLAGS) -c $< -o $@ -emit-llvm
>
> # LLVM Assemble from X.ll to Output/X.bc.  Because we are coming  
> directly from
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list