From 28cf31b9909a2789c6002810031d0a88f15d694a Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Sat, 16 May 2009 04:00:00 +0000 Subject: [PATCH] Make sure the CXXFLAGS setting is picked up by the common Makefile. Not sure why this suddenly started causing problems. llvm-svn: 71925 --- tools/gold/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/gold/Makefile b/tools/gold/Makefile index eccffcbda6b..f282a351ee8 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