From 1398405bf8931a3216543e09ecf2b08da8b2ca37 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 13 Feb 1998 00:33:05 +0000 Subject: linux.h (LIB_SPEC): Add -lc for -shared if USE_GNULIBC_1 is not defined. * config/linux.h (LIB_SPEC): Add -lc for -shared if USE_GNULIBC_1 is not defined. * config/sparc/linux.h; Ditto. * config/sparc/linux64.h (LIB_SPEC): Add -lc for -shared. * config/alpha/linux-elf.h (LIB_SPEC): New. Defined if USE_GNULIBC_1 is not defined. From-SVN: r17895 --- gcc/config/alpha/linux-elf.h | 8 ++++++++ gcc/config/linux.h | 3 ++- gcc/config/sparc/linux.h | 3 ++- gcc/config/sparc/linux64.h | 3 ++- 4 files changed, 14 insertions(+), 3 deletions(-) (limited to 'gcc/config') diff --git a/gcc/config/alpha/linux-elf.h b/gcc/config/alpha/linux-elf.h index 0945c68..40aa332 100644 --- a/gcc/config/alpha/linux-elf.h +++ b/gcc/config/alpha/linux-elf.h @@ -35,3 +35,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef DEFAULT_VTABLE_THUNKS #define DEFAULT_VTABLE_THUNKS 1 #endif + +#ifndef USE_GNULIBC_1 +#undef LIB_SPEC +#define LIB_SPEC \ + "%{shared: -lc} \ + %{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ + %{profile:-lc_p} %{!profile: -lc}}" +#endif diff --git a/gcc/config/linux.h b/gcc/config/linux.h index 870bbd2..64dc91a 100644 --- a/gcc/config/linux.h +++ b/gcc/config/linux.h @@ -103,7 +103,8 @@ Boston, MA 02111-1307, USA. */ %{!profile:%{!ggdb:-lc} %{ggdb:-lg}}}" #else #define LIB_SPEC \ - "%{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ + "%{shared: -lc} \ + %{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" #endif #else diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h index a312967..f9f8693 100644 --- a/gcc/config/sparc/linux.h +++ b/gcc/config/sparc/linux.h @@ -125,7 +125,8 @@ Boston, MA 02111-1307, USA. */ %{!profile:%{!ggdb:-lc} %{ggdb:-lg}}}" #else #define LIB_SPEC \ - "%{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ + "%{shared: -lc} \ + %{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" #endif #else diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h index c184f31..aba0417 100644 --- a/gcc/config/sparc/linux64.h +++ b/gcc/config/sparc/linux64.h @@ -112,7 +112,8 @@ Boston, MA 02111-1307, USA. */ #undef LIB_SPEC #define LIB_SPEC \ - "%{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ + "%{shared: -lc} \ + %{!shared: %{mieee-fp:-lieee} %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" /* Provide a LINK_SPEC appropriate for GNU/Linux. Here we provide support -- cgit v1.1