From: davem Date: Wed, 9 May 2012 04:57:49 +0000 (+0000) Subject: Remove -Y option from linker command line on Linux/Sparc. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a083d7d27d4e2faeba26087356d79890784e3e4a;p=thirdparty%2Fgcc.git Remove -Y option from linker command line on Linux/Sparc. gcc/ * config/sparc/linux.h (LINK_SPEC): Don't pass "-Y" option. * config/sparc/linux64.h (LINK_ARCH32_SPEC): Likewise. * config/sparc/linux64.h (LINK_ARCH64_SPEC): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@187309 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 589109431bf8..986f2c104360 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2012-05-08 David S. Miller + + * config/sparc/linux.h (LINK_SPEC): Don't pass "-Y" option. + * config/sparc/linux64.h (LINK_ARCH32_SPEC): Likewise. + * config/sparc/linux64.h (LINK_ARCH64_SPEC): Likewise. + 2012-05-08 Richard Sandiford PR rtl-optimization/53278 diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h index 60dc86976e3d..ac6c537ed41f 100644 --- a/gcc/config/sparc/linux.h +++ b/gcc/config/sparc/linux.h @@ -87,7 +87,7 @@ extern const char *host_detect_local_cpu (int argc, const char **argv); #define GLIBC_DYNAMIC_LINKER "/lib/ld-linux.so.2" #undef LINK_SPEC -#define LINK_SPEC "-m elf32_sparc -Y P,/usr/lib %{shared:-shared} \ +#define LINK_SPEC "-m elf32_sparc %{shared:-shared} \ %{!mno-relax:%{!r:-relax}} \ %{!shared: \ %{!static: \ diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h index 14966b97fc33..f932e98a342c 100644 --- a/gcc/config/sparc/linux64.h +++ b/gcc/config/sparc/linux64.h @@ -105,7 +105,7 @@ along with GCC; see the file COPYING3. If not see { "link_arch_default", LINK_ARCH_DEFAULT_SPEC }, \ { "link_arch", LINK_ARCH_SPEC }, -#define LINK_ARCH32_SPEC "-m elf32_sparc -Y P,%R/usr/lib %{shared:-shared} \ +#define LINK_ARCH32_SPEC "-m elf32_sparc %{shared:-shared} \ %{!shared: \ %{!static: \ %{rdynamic:-export-dynamic} \ @@ -113,7 +113,7 @@ along with GCC; see the file COPYING3. If not see %{static:-static}} \ " -#define LINK_ARCH64_SPEC "-m elf64_sparc -Y P,%R/usr/lib64 %{shared:-shared} \ +#define LINK_ARCH64_SPEC "-m elf64_sparc %{shared:-shared} \ %{!shared: \ %{!static: \ %{rdynamic:-export-dynamic} \