diff options
author | Roland McGrath <roland@gcc.gnu.org> | 1996-06-15 08:35:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gcc.gnu.org> | 1996-06-15 08:35:46 +0000 |
commit | 57dea801968efff681da176cfd058162f8a4f860 (patch) | |
tree | f0069f0cd2c57078506733b568eb4585c3bcbf3b | |
parent | a36cf2bb43849891a4034674d5311da2e596c895 (diff) | |
download | gcc-57dea801968efff681da176cfd058162f8a4f860.zip gcc-57dea801968efff681da176cfd058162f8a4f860.tar.gz gcc-57dea801968efff681da176cfd058162f8a4f860.tar.bz2 |
(LINK_SPEC): Remove -rpath /lib/ option. Ignore -ibcs option.
From-SVN: r12283
-rw-r--r-- | gcc/config/i386/gnu.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/config/i386/gnu.h b/gcc/config/i386/gnu.h index 1ad5df9..8cfa903 100644 --- a/gcc/config/i386/gnu.h +++ b/gcc/config/i386/gnu.h @@ -9,11 +9,10 @@ #undef LINK_SPEC #define LINK_SPEC "-m elf_i386 %{shared:-shared} \ %{!shared: \ - %{!ibcs: \ - %{!static: \ - %{rdynamic:-export-dynamic} \ - %{!dynamic-linker:-dynamic-linker /lib/ld.so} \ - %{!rpath:-rpath /lib/}} %{static:-static}}}" + %{!static: \ + %{rdynamic:-export-dynamic} \ + %{!dynamic-linker:-dynamic-linker /lib/ld.so}} \ + %{static:-static}}" /* Get machine-independent configuration parameters for the GNU system. */ |