[llvm-commits] [llvm] r71925 - /llvm/trunk/tools/gold/Makefile
    Duncan Sands 
    baldrick at free.fr
       
    Fri May 15 21:00:00 PDT 2009
    
    
  
Author: baldrick
Date: Fri May 15 23:00:00 2009
New Revision: 71925
URL: http://llvm.org/viewvc/llvm-project?rev=71925&view=rev
Log:
Make sure the CXXFLAGS setting is picked up by
the common Makefile.  Not sure why this suddenly
started causing problems.
Modified:
    llvm/trunk/tools/gold/Makefile
Modified: llvm/trunk/tools/gold/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/gold/Makefile?rev=71925&r1=71924&r2=71925&view=diff
==============================================================================
--- llvm/trunk/tools/gold/Makefile (original)
+++ llvm/trunk/tools/gold/Makefile Fri May 15 23:00:00 2009
@@ -23,8 +23,8 @@
 LINK_COMPONENTS :=
 LIBS += -llto
 
-include $(LEVEL)/Makefile.common
-
 # Because off_t is used in the public API, the largefile parts are required for
 # ABI compatibility.
 CXXFLAGS+=-I$(BINUTILS_INCDIR) -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -lLTO
+
+include $(LEVEL)/Makefile.common
    
    
More information about the llvm-commits
mailing list