diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-24 18:14:53 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-07-24 18:14:53 +0000 |
commit | f9636d56843caec9f56a1c4c9ef2414af0c73e01 (patch) | |
tree | 06ec619f8b68c026b4f6b548f328845fb04b638a /toolchain/gcc/4.2.1/300-libstdc++-pic.patch | |
parent | 75e4ffffd3ff98a98644734891267ec3cfa4eedc (diff) | |
download | buildroot-novena-f9636d56843caec9f56a1c4c9ef2414af0c73e01.tar.gz buildroot-novena-f9636d56843caec9f56a1c4c9ef2414af0c73e01.zip |
- add gcc-4.2.1
Diffstat (limited to 'toolchain/gcc/4.2.1/300-libstdc++-pic.patch')
-rw-r--r-- | toolchain/gcc/4.2.1/300-libstdc++-pic.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/toolchain/gcc/4.2.1/300-libstdc++-pic.patch b/toolchain/gcc/4.2.1/300-libstdc++-pic.patch new file mode 100644 index 000000000..560bcb237 --- /dev/null +++ b/toolchain/gcc/4.2.1/300-libstdc++-pic.patch @@ -0,0 +1,50 @@ +# DP: Build and install libstdc++_pic.a library. + +--- gcc/libstdc++-v3/src/Makefile.am ++++ gcc/libstdc++-v3/src/Makefile.am +@@ -214,6 +214,12 @@ + $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LDFLAGS) -o $@ + + ++install-exec-local: ++ifeq ($(enable_shared),yes) ++ $(AR) cru libstdc++_pic.a .libs/*.o $(top_builddir)/libsupc++/*.o ++ $(INSTALL_DATA) libstdc++_pic.a $(DESTDIR)$(toolexeclibdir) ++endif ++ + # Added bits to build debug library. + if GLIBCXX_BUILD_DEBUG + all-local: build_debug +--- gcc/libstdc++-v3/src/Makefile.in ++++ gcc/libstdc++-v3/src/Makefile.in +@@ -627,7 +627,7 @@ + + install-data-am: install-data-local + +-install-exec-am: install-toolexeclibLTLIBRARIES ++install-exec-am: install-toolexeclibLTLIBRARIES install-exec-local + + install-info: install-info-am + +@@ -660,6 +660,7 @@ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-local install-exec \ ++ install-exec-local \ + install-exec-am install-info install-info-am install-man \ + install-strip install-toolexeclibLTLIBRARIES installcheck \ + installcheck-am installdirs maintainer-clean \ +@@ -743,6 +743,13 @@ + install_debug: + (cd ${debugdir} && $(MAKE) \ + toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install) ++ ++install-exec-local: ++ifeq ($(enable_shared),yes) ++ $(AR) cru libstdc++_pic.a *.o $(top_builddir)/libsupc++/*.o ++ $(INSTALL_DATA) libstdc++_pic.a $(DESTDIR)$(toolexeclibdir) ++endif ++ + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: |