thomas@1461: Original patch from: ../4.3.2/190-libstdc++-pic.patch thomas@1461: thomas@1461: -= BEGIN original header =- thomas@1461: Original patch from gentoo: gentoo/src/patchsets/gcc/4.3.1/gentoo/54_all_300-libstdc++-pic.patch thomas@1461: install libstdc++_pic.a if we have pic objs thomas@1461: thomas@1461: -= END original header =- thomas@1461: yann@2124: diff -durN gcc-4.3.5.orig/libstdc++-v3/src/Makefile.am gcc-4.3.5/libstdc++-v3/src/Makefile.am yann@2124: --- gcc-4.3.5.orig/libstdc++-v3/src/Makefile.am 2008-02-29 19:26:50.000000000 +0100 yann@2124: +++ gcc-4.3.5/libstdc++-v3/src/Makefile.am 2010-09-19 18:58:40.000000000 +0200 thomas@1461: @@ -289,6 +289,13 @@ thomas@1461: $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@ thomas@1461: thomas@1461: thomas@1461: +install-exec-local: thomas@1461: + pic_objs=`sed -n "s:'::g;s:^pic_object=::p" *.lo | grep -v '^none$$'`; \ thomas@1461: + if [ x"$$pic_objs" != x ]; then \ thomas@1461: + $(AR) cru libstdc++_pic.a $$pic_objs $(top_builddir)/libsupc++/*.o || exit 1; \ thomas@1461: + $(INSTALL_DATA) libstdc++_pic.a $(DESTDIR)$(toolexeclibdir) || exit 1; \ thomas@1461: + fi thomas@1461: + thomas@1461: # Added bits to build debug library. thomas@1461: if GLIBCXX_BUILD_DEBUG thomas@1461: all-local: build_debug yann@2124: diff -durN gcc-4.3.5.orig/libstdc++-v3/src/Makefile.in gcc-4.3.5/libstdc++-v3/src/Makefile.in yann@2124: --- gcc-4.3.5.orig/libstdc++-v3/src/Makefile.in 2010-05-06 19:19:46.000000000 +0200 yann@2124: +++ gcc-4.3.5/libstdc++-v3/src/Makefile.in 2010-09-19 19:01:43.000000000 +0200 yann@2124: @@ -646,7 +646,7 @@ thomas@1461: thomas@1461: install-data-am: install-data-local thomas@1461: thomas@1461: -install-exec-am: install-toolexeclibLTLIBRARIES thomas@1461: +install-exec-am: install-toolexeclibLTLIBRARIES install-exec-local thomas@1461: thomas@1461: install-info: install-info-am thomas@1461: yann@2124: @@ -685,7 +685,7 @@ yann@2124: mostlyclean mostlyclean-compile mostlyclean-generic \ yann@2124: mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ yann@2124: uninstall-am uninstall-info-am \ thomas@1461: - uninstall-toolexeclibLTLIBRARIES thomas@1461: + uninstall-toolexeclibLTLIBRARIES install-exec-local thomas@1461: thomas@1461: thomas@1461: # Symbol versioning for shared libraries. yann@2124: @@ -811,6 +811,14 @@ thomas@1461: install_debug: thomas@1461: (cd ${debugdir} && $(MAKE) \ thomas@1461: toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install) thomas@1461: + thomas@1461: +install-exec-local: thomas@1461: + pic_objs=`sed -n "s:'::g;s:^pic_object=::p" *.lo | grep -v '^none$$'`; \ thomas@1461: + if [ x"$$pic_objs" != x ]; then \ thomas@1461: + $(AR) cru libstdc++_pic.a $$pic_objs $(top_builddir)/libsupc++/*.o || exit 1; \ thomas@1461: + $(INSTALL_DATA) libstdc++_pic.a $(DESTDIR)$(toolexeclibdir) || exit 1; \ thomas@1461: + fi thomas@1461: + thomas@1461: # Tell versions [3.59,3.63) of GNU make to not export all variables. thomas@1461: # Otherwise a system limit (for SysV at least) may be exceeded. thomas@1461: .NOEXPORT: