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 | 81e053a739e1587344855ad42435ccacc4f1075f (patch) | |
tree | 82eaf5a5eee405ebcae8d7d2f1473edd6d4547bb | |
parent | bdbc98f3eff0fef3e801a7189b75c1fa99200be0 (diff) | |
download | bcm5719-llvm-81e053a739e1587344855ad42435ccacc4f1075f.tar.gz bcm5719-llvm-81e053a739e1587344855ad42435ccacc4f1075f.zip |
Make sure the CXXFLAGS setting is picked up by
the common Makefile. Not sure why this suddenly
started causing problems.
llvm-svn: 71925
-rw-r--r-- | llvm/tools/gold/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/gold/Makefile b/llvm/tools/gold/Makefile index eccffcbda6b..f282a351ee8 100644 --- a/llvm/tools/gold/Makefile +++ b/llvm/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 |