From b6ecbee4b2951a5ca6ceafbc20a300c8d375ddf7 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Mon, 8 Aug 2016 15:51:01 -0700 Subject: [PATCH] libunwind: Do not use gold for linking This effectively reverts the commit 3dd233ac0c80393824100c54bb525236f8290fd2 gold now emits errors on copy relocs against protected symbols what ld.bfd did in past, however it seems its too conservative. This does not fix the case for folks who use gold as default linker, however it does make bintuls 2.27 work with default configuration of OE (From OE-Core rev: 0092a076adb11cac411c86389af84bb96169730f) Signed-off-by: Khem Raj Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-support/libunwind/libunwind.inc | 9 --------- 1 file changed, 9 deletions(-) diff --git a/meta/recipes-support/libunwind/libunwind.inc b/meta/recipes-support/libunwind/libunwind.inc index 1c342d3922..e4ae8df278 100644 --- a/meta/recipes-support/libunwind/libunwind.inc +++ b/meta/recipes-support/libunwind/libunwind.inc @@ -18,15 +18,6 @@ ATOMICOPS_armv5 = "-DAO_USE_PTHREAD_DEFS=1" ATOMICOPS_armv4 = "-DAO_USE_PTHREAD_DEFS=1" ATOMICOPS ?= "" -LDFLAGS_append_x86 = " -fuse-ld=gold" -LDFLAGS_append_x86-64 = " -fuse-ld=gold" - -LDFLAGS_append_arm = " -fuse-ld=gold" -LDFLAGS_append_aarch64 = " -fuse-ld=gold" - -LDFLAGS_append_powerpc = " -fuse-ld=gold -mbss-plt" -LDFLAGS_append_powerpc64 = " -fuse-ld=gold -mbss-plt" - SECURITY_LDFLAGS_append_libc-musl = " -lssp_nonshared -lssp" BBCLASSEXTEND = "native"