patches/gcc/4.3.2/370-sh-no-libc.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 12 20:54:54 2010 +0200 (2010-09-12)
changeset 2122 eb837be50f8f
permissions -rw-r--r--
cc/gcc: do not force use of non-vital companion libraries

While GMP and MPFR are required by gcc>=4.3 (to build the frontends),
and MPC is required by gcc>=4.5, the other libs are not. If they are
present then gcc will enable advanced features; if they are missing,
then gcc will (should) simply disable those features.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@1239
     1
diff -durN gcc-4.3.2.orig/libgcc/config/sh/t-linux gcc-4.3.2/libgcc/config/sh/t-linux
yann@1239
     2
--- gcc-4.3.2.orig/libgcc/config/sh/t-linux	2009-03-07 11:42:38.000000000 +0100
yann@1239
     3
+++ gcc-4.3.2/libgcc/config/sh/t-linux	2009-03-07 11:03:39.000000000 +0100
yann@1239
     4
@@ -15,7 +15,7 @@
yann@1239
     5
 	-Wl,--soname=@shlib_base_name@.so.1 \
yann@1239
     6
 	-Wl,--version-script=@shlib_map_file@ \
yann@1239
     7
 	-o @multilib_dir@/@shlib_base_name@.so.1.tmp @multilib_flags@ \
yann@1239
     8
-	@shlib_objs@ -lc && \
yann@1239
     9
+	@shlib_objs@ && \
yann@1239
    10
 	rm -f @multilib_dir@/@shlib_base_name@.so && \
yann@1239
    11
 	if [ -f @multilib_dir@/@shlib_base_name@.so.1 ]; then \
yann@1239
    12
 	  mv -f @multilib_dir@/@shlib_base_name@.so.1 \