mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-21 20:46:14 +00:00
c758d6427c
Deleted (upstreamed): - 020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch [1] - 021-libcc1-fix-vector-include.patch [2] All other patches automatically rebased. Note that selecting GCC 14, as of now, *will* result in build failures. The packages that fail to build will be fixed as they're found. Thus, GCC 13.x is the default, for the time being. [1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=9970b576b7e4ae337af1268395ff221348c4b34a [2] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5213047b1d50af63dfabb5e5649821a6cb157e33 Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
45 lines
1.4 KiB
Diff
45 lines
1.4 KiB
Diff
commit c96312958c0621e72c9b32da5bc224ffe2161384
|
|
Author: Felix Fietkau <nbd@openwrt.org>
|
|
Date: Mon Oct 19 23:26:09 2009 +0000
|
|
|
|
gcc: create a proper libgcc_pic.a static library for relinking (4.3.3+ for now, backport will follow)
|
|
|
|
SVN-Revision: 18086
|
|
|
|
--- a/libgcc/Makefile.in
|
|
+++ b/libgcc/Makefile.in
|
|
@@ -940,11 +940,12 @@ $(libgcov-driver-objects): %$(objext): $
|
|
|
|
# Static libraries.
|
|
libgcc.a: $(libgcc-objects)
|
|
+libgcc_pic.a: $(libgcc-s-objects)
|
|
libgcov.a: $(libgcov-objects)
|
|
libunwind.a: $(libunwind-objects)
|
|
libgcc_eh.a: $(libgcc-eh-objects)
|
|
|
|
-libgcc.a libgcov.a libunwind.a libgcc_eh.a:
|
|
+libgcc.a libgcov.a libunwind.a libgcc_eh.a libgcc_pic.a:
|
|
-rm -f $@
|
|
|
|
objects="$(objects)"; \
|
|
@@ -968,7 +969,7 @@ all: libunwind.a
|
|
endif
|
|
|
|
ifeq ($(enable_shared),yes)
|
|
-all: libgcc_eh.a libgcc_s$(SHLIB_EXT)
|
|
+all: libgcc_eh.a libgcc_pic.a libgcc_s$(SHLIB_EXT)
|
|
ifneq ($(LIBUNWIND),)
|
|
all: libunwind$(SHLIB_EXT)
|
|
libgcc_s$(SHLIB_EXT): libunwind$(SHLIB_EXT)
|
|
@@ -1174,6 +1175,10 @@ install-shared:
|
|
chmod 644 $(DESTDIR)$(inst_libdir)/libgcc_eh.a
|
|
$(RANLIB) $(DESTDIR)$(inst_libdir)/libgcc_eh.a
|
|
|
|
+ $(INSTALL_DATA) libgcc_pic.a $(mapfile) $(DESTDIR)$(inst_libdir)/
|
|
+ chmod 644 $(DESTDIR)$(inst_libdir)/libgcc_pic.a
|
|
+ $(RANLIB) $(DESTDIR)$(inst_libdir)/libgcc_pic.a
|
|
+
|
|
$(subst @multilib_dir@,$(MULTIDIR),$(subst \
|
|
@shlib_base_name@,libgcc_s,$(subst \
|
|
@shlib_slibdir_qual@,$(MULTIOSSUBDIR),$(SHLIB_INSTALL))))
|