diff options
author | Duncan Sands <baldrick@free.fr> | 2009-05-16 04:00:00 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2009-05-16 04:00:00 +0000 |
commit | 10287438e1d67df31f6c8279052fbfc724b34497 (patch) | |
tree | 7e47e49c211d40d84a31566d5c134dd9762aa106 /tools/gold | |
parent | e556720ea8d60581c95d3ca3f9175a3688150d95 (diff) |
Make sure the CXXFLAGS setting is picked up by
the common Makefile. Not sure why this suddenly
started causing problems.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gold')
-rw-r--r-- | tools/gold/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gold/Makefile b/tools/gold/Makefile index eccffcbda6..f282a351ee 100644 --- a/tools/gold/Makefile +++ b/tools/gold/Makefile @@ -23,8 +23,8 @@ DONT_BUILD_RELINKED = 1 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 |