diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1992-12-06 12:57:23 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1992-12-06 12:57:23 +0000 |
commit | 1170af67459388b57eae0d675b2ae8c9b5f78535 (patch) | |
tree | 66937c10a7d57af75cdb39171c88caf11f816505 /gcc | |
parent | 5251caf233025a931b174c6b4f173f4e23b87167 (diff) | |
download | gcc-1170af67459388b57eae0d675b2ae8c9b5f78535.zip gcc-1170af67459388b57eae0d675b2ae8c9b5f78535.tar.gz gcc-1170af67459388b57eae0d675b2ae8c9b5f78535.tar.bz2 |
Pass -call_shared to linker.
From-SVN: r2841
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/bsd-5.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/dec-osf1.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/mips-5.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/svr3-5.h | 3 | ||||
-rw-r--r-- | gcc/config/mips/svr4-5.h | 3 |
5 files changed, 10 insertions, 5 deletions
diff --git a/gcc/config/mips/bsd-5.h b/gcc/config/mips/bsd-5.h index e454a4f..48d9d58 100644 --- a/gcc/config/mips/bsd-5.h +++ b/gcc/config/mips/bsd-5.h @@ -38,7 +38,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{EB} %{!EB: -EB} \ %{EL: %e-EL not supported} \ %{mips1} %{mips2} %{mips3} %{bestGnum} \ - %{shared} %{non_shared} %{!shared: %{!non_shared: -non_shared}} \ + %{shared} %{non_shared} %{call_shared} %{no_archive} %{exact_version} \ + %{!shared: %{!non_shared: %{!call_shared: -non_shared}}}} \ -systype /bsd43/ }" #define LIB_SPEC "%{p:-lprof1} %{pg:-lprof1} -lc" diff --git a/gcc/config/mips/dec-osf1.h b/gcc/config/mips/dec-osf1.h index 632d3c7..8506308 100644 --- a/gcc/config/mips/dec-osf1.h +++ b/gcc/config/mips/dec-osf1.h @@ -28,7 +28,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{EL} %{!EL: -EL} \ %{EB: %e-EB not supported} \ %{mips1} %{mips2} %{mips3} %{bestGnum} \ - %{shared} %{non_shared} %{!shared: %{!non_shared: -non_shared}}}" + %{shared} %{non_shared} %{call_shared} %{no_archive} %{exact_version} \ + %{!shared: %{!non_shared: %{!call_shared: -non_shared}}}}" #include "decstatn.h" diff --git a/gcc/config/mips/mips-5.h b/gcc/config/mips/mips-5.h index 09a0166..9f6d03b 100644 --- a/gcc/config/mips/mips-5.h +++ b/gcc/config/mips/mips-5.h @@ -24,6 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{EB} %{!EB: -EB} \ %{EL: %e-EL not supported} \ %{mips1} %{mips2} %{mips3} %{bestGnum} \ - %{shared} %{non_shared} %{!shared: %{!non_shared: -non_shared}}" + %{shared} %{non_shared} %{call_shared} %{no_archive} %{exact_version} \ + %{!shared: %{!non_shared: %{!call_shared: -non_shared}}}}" #include "mips.h" diff --git a/gcc/config/mips/svr3-5.h b/gcc/config/mips/svr3-5.h index d9af8c4..a1dfeda 100644 --- a/gcc/config/mips/svr3-5.h +++ b/gcc/config/mips/svr3-5.h @@ -38,7 +38,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{EB} %{!EB:-EB} \ %{EL: %e-EL not supported} \ %{mips1} %{mips2} %{mips3} %{bestGnum} \ - %{shared} %{non_shared} %{!shared: %{!non_shared: -non_shared}} \ + %{shared} %{non_shared} %{call_shared} %{no_archive} %{exact_version} \ + %{!shared: %{!non_shared: %{!call_shared: -non_shared}}}} \ -systype /sysv/}" #define LIB_SPEC "%{p:-lprof1} %{pg:-lprof1} -lc crtn.o%s" diff --git a/gcc/config/mips/svr4-5.h b/gcc/config/mips/svr4-5.h index 2e58e71..c25225d 100644 --- a/gcc/config/mips/svr4-5.h +++ b/gcc/config/mips/svr4-5.h @@ -38,7 +38,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ %{EB} %{!EB:-EB} \ %{EL: %e-EL not supported} \ %{mips1} %{mips2} %{mips3} %{bestGnum} \ - %{shared} %{non_shared} %{!shared: %{!non_shared: -non_shared}} \ + %{shared} %{non_shared} %{call_shared} %{no_archive} %{exact_version} \ + %{!shared: %{!non_shared: %{!call_shared: -non_shared}}}} \ -systype /svr4/}" #define LIB_SPEC "%{p:-lprof1} %{pg:-lprof1} -lc crtn.o%s" |