diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-02-24 21:09:37 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-02-24 21:09:37 +0000 |
commit | 06a3d35eda134aa178747be2a3b92e35625863ec (patch) | |
tree | fb6982878703257154d702d982455521600acad9 /toolchain/gcc/patches/4.6-linaro | |
parent | 9a97bfcc2bfe32819ce22d1f73360020e854efe6 (diff) | |
download | upstream-06a3d35eda134aa178747be2a3b92e35625863ec.tar.gz upstream-06a3d35eda134aa178747be2a3b92e35625863ec.tar.bz2 upstream-06a3d35eda134aa178747be2a3b92e35625863ec.zip |
gcc: fix visibility of symbols libgcc.a
Symbols need to be hidden, even for the static variant
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39749
Diffstat (limited to 'toolchain/gcc/patches/4.6-linaro')
-rw-r--r-- | toolchain/gcc/patches/4.6-linaro/850-use_shared_libgcc.patch | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/toolchain/gcc/patches/4.6-linaro/850-use_shared_libgcc.patch b/toolchain/gcc/patches/4.6-linaro/850-use_shared_libgcc.patch index 1a7f62a7e1..61e1035d35 100644 --- a/toolchain/gcc/patches/4.6-linaro/850-use_shared_libgcc.patch +++ b/toolchain/gcc/patches/4.6-linaro/850-use_shared_libgcc.patch @@ -57,12 +57,30 @@ } --- a/libgcc/Makefile.in +++ b/libgcc/Makefile.in -@@ -272,7 +272,7 @@ ifeq ($(enable_shared),yes) +@@ -269,6 +269,12 @@ ifeq ($(enable_shared),yes) + install-libunwind = install-libunwind + endif + ++else ++# Not enable_shared. ++iterator = $(srcdir)/empty.mk $(patsubst %,$(srcdir)/static-object.mk,$(iter-items)) ++endif ++ ++ # For -fvisibility=hidden. We need both a -fvisibility=hidden on # the command line, and a #define to prevent libgcc2.h etc from # overriding that with #pragmas. --vis_hide = @vis_hide@ -+vis_hide = - - ifneq (,$(vis_hide)) +@@ -291,13 +297,6 @@ else + gen-hide-list = echo > $@ + endif +-else +-# Not enable_shared. +-iterator = $(srcdir)/empty.mk $(patsubst %,$(srcdir)/static-object.mk,$(iter-items)) +-vis_hide = +-gen-hide-list = echo > \$@ +-endif +- + ifneq ($(EXTRA_PARTS),) + extra-parts = libgcc-extra-parts + INSTALL_PARTS = $(EXTRA_PARTS) |