diff options
author | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-09 04:57:49 +0000 |
---|---|---|
committer | davem <davem@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-05-09 04:57:49 +0000 |
commit | a083d7d27d4e2faeba26087356d79890784e3e4a (patch) | |
tree | 4a5f1dd7c4aadd0e219109fbcabb6942cbbc1f68 /gcc/config/sparc/linux64.h | |
parent | 7f33cf16e2d6398cc970e5688e6a0e6f1c024f2e (diff) | |
download | gcc-a083d7d27d4e2faeba26087356d79890784e3e4a.tar.gz |
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
Diffstat (limited to 'gcc/config/sparc/linux64.h')
-rw-r--r-- | gcc/config/sparc/linux64.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h index 14966b97fc3..f932e98a342 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} \ |