From: Joern Rennecke Date: Mon, 7 Apr 1997 21:29:09 +0000 (+0100) Subject: (SUBTARGET_CC1_SPEC): Define. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=13a61c299d7da9de6e2073441a8094fa4be1307e;p=gcc.git (SUBTARGET_CC1_SPEC): Define. (LINK_SPEC, STARTFILE_SPEC): Support -static. From-SVN: r13841 --- diff --git a/gcc/config/mips/iris5.h b/gcc/config/mips/iris5.h index f75f39d68eb..d7840b45a4a 100644 --- a/gcc/config/mips/iris5.h +++ b/gcc/config/mips/iris5.h @@ -54,6 +54,9 @@ Boston, MA 02111-1307, USA. */ (DEFAULT_WORD_SWITCH_TAKES_ARG (STR) \ || !strcmp (STR, "rpath")) +#undef SUBTARGET_CC1_SPEC +#define SUBTARGET_CC1_SPEC "%{static: -mno-abicalls}" + /* ??? _MIPS_SIM and _MIPS_SZPTR should eventually depend on options when options for them exist. */ @@ -80,14 +83,21 @@ Boston, MA 02111-1307, USA. */ %{G*} %{EB} %{EL} %{mips1} %{mips2} %{mips3} \ %{bestGnum} %{shared} %{non_shared} \ %{call_shared} %{no_archive} %{exact_version} \ -%{!shared:%{!non_shared:%{!call_shared: -call_shared -no_unresolved}}} \ +%{static: -non_shared} \ +%{!static: \ + %{!shared:%{!non_shared:%{!call_shared: -call_shared -no_unresolved}}}} \ %{rpath} \ -_SYSTYPE_SVR4" /* We now support shared libraries. */ #undef STARTFILE_SPEC -#define STARTFILE_SPEC \ - "%{!shared:%{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s libprof1.a%s}%{!p:crt1.o%s}}}" +#define STARTFILE_SPEC "\ +%{!static: \ + %{!shared:%{pg:gcrt1.o%s}%{!pg:%{p:mcrt1.o%s libprof1.a%s}%{!p:crt1.o%s}}}} \ +%{static: \ + %{pg:gcrt1.o%s} \ + %{!pg:%{p:/usr/lib/nonshared/mcrt1.o%s libprof1.a%s} \ + %{!p:/usr/lib/nonshared/crt1.o%s}}}" #undef LIB_SPEC #define LIB_SPEC "%{!shared:%{p:-lprof1} %{pg:-lprof1} -lc}"