From bae121afcda8ffdca9cc03030f790121af251cea Mon Sep 17 00:00:00 2001 From: Andrew Hsieh Date: Wed, 25 Jul 2012 00:35:35 -0700 Subject: [PATCH] Add -fuse-ld=bfd to x86 target Add -fuse-ld=bfd because ld.gold doesn't support "--copy-dt-needed-entries". Change-Id: Ie6fa0a2ddfc57b650552c8cf0891f738a5be0dda --- core/combo/TARGET_linux-x86.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/combo/TARGET_linux-x86.mk b/core/combo/TARGET_linux-x86.mk index 28c031d726..9c0f7b942f 100644 --- a/core/combo/TARGET_linux-x86.mk +++ b/core/combo/TARGET_linux-x86.mk @@ -186,12 +186,14 @@ $(hide) $(PRIVATE_CXX) \ endef +# Add -fuse-ld=bfd because ld.gold doesn't support "--copy-dt-needed-entries". define transform-o-to-executable-inner $(hide) $(PRIVATE_CXX) \ $(TARGET_GLOBAL_LDFLAGS) \ -nostdlib -Bdynamic \ -Wl,-dynamic-linker,/system/bin/linker \ -Wl,--copy-dt-needed-entries \ + -fuse-ld=bfd \ -Wl,-z,nocopyreloc \ -fPIE -pie \ -o $@ \