diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-01-14 18:45:06 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2011-01-14 18:45:06 +0000 |
commit | dabadc52a9d0c0403f8a4adaa642b11f991f39fe (patch) | |
tree | 154e46914e1de29885ec3e5dd99548232c3a9f61 /gcc/config/sparc/linux.h | |
parent | 43ee67856a31aa205c7f535a84673c552519a231 (diff) | |
download | gcc-dabadc52a9d0c0403f8a4adaa642b11f991f39fe.zip gcc-dabadc52a9d0c0403f8a4adaa642b11f991f39fe.tar.gz gcc-dabadc52a9d0c0403f8a4adaa642b11f991f39fe.tar.bz2 |
linux.h (LINK_SPEC): Don't use %{!ibcs:} conditional.
* config/i386/linux.h (LINK_SPEC): Don't use %{!ibcs:} conditional.
* config/m32r/linux.h (LINK_SPEC): Likewise.
* config/mips/linux.h (LINK_SPEC): Likewise.
* config/mips/linux64.h (LINK_SPEC): Likewise.
* config/sparc/linux.h (LINK_SPEC): Likewise.
* config/sparc/linux64.h (LINK_ARCH32_SPEC, LINK_ARCH64_SPEC,
LINK_SPEC): Likewise.
* config/xtensa/linux.h (LINK_SPEC): Likewise.
From-SVN: r168802
Diffstat (limited to 'gcc/config/sparc/linux.h')
-rw-r--r-- | gcc/config/sparc/linux.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h index fe02f89..261a9ee 100644 --- a/gcc/config/sparc/linux.h +++ b/gcc/config/sparc/linux.h @@ -1,6 +1,6 @@ /* Definitions for SPARC running Linux-based GNU systems with ELF. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, - 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Contributed by Eddie C. Dost (ecd@skynet.be) This file is part of GCC. @@ -81,11 +81,10 @@ along with GCC; see the file COPYING3. If not see #define LINK_SPEC "-m elf32_sparc -Y P,/usr/lib %{shared:-shared} \ %{!mno-relax:%{!r:-relax}} \ %{!shared: \ - %{!ibcs: \ - %{!static: \ - %{rdynamic:-export-dynamic} \ - -dynamic-linker " LINUX_DYNAMIC_LINKER "} \ - %{static:-static}}}" + %{!static: \ + %{rdynamic:-export-dynamic} \ + -dynamic-linker " LINUX_DYNAMIC_LINKER "} \ + %{static:-static}}" /* The sun bundled assembler doesn't accept -Yd, (and neither does gas). It's safe to pass -s always, even if -g is not used. */ |