1
0
Fork 0

ColdFire: Add -got=single param for new linux v4e toolchains

Signed-off-by: Kurt Mahan <kmahan@freescale.com>
utp
TsiChung Liew 2008-06-18 19:05:23 -05:00 committed by John Rigby
parent 56d52615cd
commit 8371dc2066
2 changed files with 12 additions and 0 deletions

View File

@ -29,3 +29,9 @@ PLATFORM_CPPFLAGS += -mcpu=54455 -fPIC
else
PLATFORM_CPPFLAGS += -m5407 -fPIC
endif
ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
ifneq (,$(findstring GOT,$(shell $(LD) --help)))
PLATFORM_LDFLAGS += --got=single
endif
endif

View File

@ -29,3 +29,9 @@ PLATFORM_CPPFLAGS += -mcpu=5485 -fPIC
else
PLATFORM_CPPFLAGS += -m5407 -fPIC
endif
ifneq (,$(findstring -linux-,$(shell $(CC) --version)))
ifneq (,$(findstring GOT,$(shell $(LD) --help)))
PLATFORM_LDFLAGS += --got=single
endif
endif