diff options
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/config/mips/linux.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/linux64.h | 4 | ||||
-rw-r--r-- | gcc/config/mn10300/linux.h | 3 | ||||
-rw-r--r-- | gcc/config/sh/linux.h | 1 |
5 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3519940..cadcf1e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2005-01-25 Daniel Jacobowitz <dan@codesourcery.com> + + * config/mips/linux.h (LIB_SPEC): Remove -rpath-link. + * config/mips/linux64.h (LIB_SPEC): Likewise. + * config/mn10300/linux.h (LIB_SPEC): Likewise. + * config/sh/linux.h (LIB_SPEC): Likewise. + 2005-01-25 Aldy Hernandez <aldyh@redhat.com> * config/frv/frv.c (frv_legitimize_tls_address): New. diff --git a/gcc/config/mips/linux.h b/gcc/config/mips/linux.h index 4ca547d..47e24b6 100644 --- a/gcc/config/mips/linux.h +++ b/gcc/config/mips/linux.h @@ -1,5 +1,5 @@ /* Definitions for MIPS running Linux-based GNU systems with ELF format. - Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 + Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. This file is part of GCC. @@ -175,7 +175,6 @@ Boston, MA 02111-1307, USA. */ #undef LIB_SPEC #define LIB_SPEC "\ %{shared: -lc} \ -%{!static:-rpath-link %R/lib:%R/usr/lib} \ %{!shared: %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" diff --git a/gcc/config/mips/linux64.h b/gcc/config/mips/linux64.h index 59c78e5..34274b6fb 100644 --- a/gcc/config/mips/linux64.h +++ b/gcc/config/mips/linux64.h @@ -33,10 +33,6 @@ Boston, MA 02111-1307, USA. */ #undef LIB_SPEC #define LIB_SPEC "\ %{shared: -lc} \ -%{!static: \ - %{mabi=n32:-rpath-link %R/lib32:%R/usr/lib32} \ - %{mabi=64:-rpath-link %R/lib64:%R/usr/lib64} \ - %{mabi=32:-rpath-link %R/lib:%R/usr/lib}} \ %{!shared: %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" diff --git a/gcc/config/mn10300/linux.h b/gcc/config/mn10300/linux.h index 0130498..217812d 100644 --- a/gcc/config/mn10300/linux.h +++ b/gcc/config/mn10300/linux.h @@ -1,6 +1,6 @@ /* Definitions of taret machine for GNU compiler. Matsushita AM33/2.0 - Copyright 2001, 2002 Free Software Foundation, Inc. + Copyright 2001, 2002, 2005 Free Software Foundation, Inc. Contributed by Alexandre Oliva <aoliva@redhat.com> This file is part of GCC. @@ -43,7 +43,6 @@ #undef LIB_SPEC #define LIB_SPEC \ "%{shared: -lc} \ - %{!static:-rpath-link %R/lib:%R/usr/lib} \ %{!shared: %{pthread:-lpthread} \ %{profile:-lc_p} %{!profile: -lc}}" diff --git a/gcc/config/sh/linux.h b/gcc/config/sh/linux.h index 56c85d6..47a71ac 100644 --- a/gcc/config/sh/linux.h +++ b/gcc/config/sh/linux.h @@ -78,7 +78,6 @@ do { \ #define LIB_SPEC \ "%{pthread:-lpthread} \ %{shared: -lc} \ - %{!static:-rpath-link %R/lib:%R/usr/lib} \ %{!shared: \ %{mieee-fp:-lieee} \ %{profile:-lc_p} %{!profile: -lc}}" |