[llvm] r185060 - Add CXXFLAGS back to the Link command.
Eric Christopher
echristo at gmail.com
Wed Jun 26 23:57:24 PDT 2013
Some other solution please. :)
In particular LDFLAGS if you need particular linker flags passed in from
the make line. That said you probably shouldn't be doing that as a matter
of course either. :)
-eric
On Jun 26, 2013 11:12 PM, "Bob Wilson" <bob.wilson at apple.com> wrote:
> Author: bwilson
> Date: Thu Jun 27 01:09:14 2013
> New Revision: 185060
>
> URL: http://llvm.org/viewvc/llvm-project?rev=185060&view=rev
> Log:
> Add CXXFLAGS back to the Link command.
>
> This is essentially reverting one piece of 184793 to try to fix one of
> Apple's
> buildbots. I will check with Eric to see if this is OK or if we need to
> find
> some other solution.
>
> Modified:
> llvm/trunk/Makefile.rules
>
> Modified: llvm/trunk/Makefile.rules
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=185060&r1=185059&r2=185060&view=diff
>
> ==============================================================================
> --- llvm/trunk/Makefile.rules (original)
> +++ llvm/trunk/Makefile.rules Thu Jun 27 01:09:14 2013
> @@ -757,7 +757,8 @@ Preprocess.CXX= $(Compile.Wrapper) \
> $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
> $(CompileCommonOpts) $(CXX.Flags) -E
> Link = $(Compile.Wrapper) \
> - $(CXX) $(LD.Flags) $(LDFLAGS) $(TargetCommonOpts)
> $(Strip)
> + $(CXX) $(CXXFLAGS) $(LD.Flags) $(LDFLAGS) \
> + $(TargetCommonOpts) $(Strip)
>
> BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
> $(TargetCommonOpts) $(CompileCommonOpts)
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20130626/5cf52c6b/attachment.html>
More information about the llvm-commits
mailing list