patches/gcc/4.2.1/300-libstdc++-nostdlib-linking.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
yann@1287
     1
On 20090401, Ted Jordan writes:
yann@1287
     2
 The generated libtool for building libstdc++ adds the -nostdlib option to the
yann@1287
     3
 g++ command for linking but doesn't add -lgcc.  This causes a "hidden symbol"
yann@1287
     4
 error when linking against the libstdc++ shared object.  This patch adds gcc
yann@1287
     5
 to the list of libraries linked against when linking libstdc++.
yann@1287
     6
yann@1287
     7
Index: gcc-4.2.1/ltcf-cxx.sh
yann@1287
     8
===================================================================
yann@1287
     9
--- gcc-4.2.1.orig/ltcf-cxx.sh	2005-07-15 21:30:53.000000000 -0500
yann@1287
    10
+++ gcc-4.2.1/ltcf-cxx.sh	2009-04-02 09:30:34.000000000 -0500
yann@1287
    11
@@ -78,8 +78,8 @@
yann@1287
    12
   # to be the same.
yann@1287
    13
 
yann@1287
    14
   if test "$with_gnu_ld" = yes; then
yann@1287
    15
-    archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
yann@1287
    16
-    archive_expsym_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
yann@1287
    17
+    archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -lgcc ${wl}-soname $wl$soname -o $lib'
yann@1287
    18
+    archive_expsym_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -lgcc ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
yann@1287
    19
 
yann@1287
    20
     hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
yann@1287
    21
     export_dynamic_flag_spec='${wl}--export-dynamic'