From: Jason Merrill Date: Wed, 8 Mar 1995 18:40:51 +0000 (+0000) Subject: Add -taso and -rpath to LINK_SPEC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b890f297ea0a693ca72fc6261475981a1fad2289;p=gcc.git Add -taso and -rpath to LINK_SPEC From-SVN: r9132 --- diff --git a/gcc/config/alpha/alpha.h b/gcc/config/alpha/alpha.h index 961c4802a8b..5eebf618b69 100644 --- a/gcc/config/alpha/alpha.h +++ b/gcc/config/alpha/alpha.h @@ -53,7 +53,15 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -call_shared as appropriate. Also pass -pg. */ #define LINK_SPEC \ "-G 8 %{O*:-O3} %{!O*:-O1} %{!shared:-init __main} %{static:-non_shared} \ - %{!static:%{shared:-shared} %{!shared:-call_shared}} %{pg}" + %{!static:%{shared:-shared} %{!shared:-call_shared}} %{pg} %{taso} \ + %{rpath*}" + +#define WORD_SWITCH_TAKES_ARG(STR) \ + (!strcmp (STR, "rpath") || !strcmp (STR, "include") \ + || !strcmp (STR, "imacros") || !strcmp (STR, "aux-info") \ + || !strcmp (STR, "idirafter") || !strcmp (STR, "iprefix") \ + || !strcmp (STR, "iwithprefix") || !strcmp (STR, "iwithprefixbefore") \ + || !strcmp (STR, "isystem")) #define STARTFILE_SPEC \ "%{!shared:%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}}" diff --git a/gcc/config/alpha/osf12.h b/gcc/config/alpha/osf12.h index 4f3aeafd056..67935fe7e70 100644 --- a/gcc/config/alpha/osf12.h +++ b/gcc/config/alpha/osf12.h @@ -26,5 +26,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef LINK_SPEC #define LINK_SPEC \ - "-G 8 -O1 %{!shared:-init __main} %{static:-non_shared} \ - %{!static:%{shared:-shared} %{!shared:-call_shared}}" + "-G 8 -O1 %{!shared:-init __main} %{static:-non_shared} %{rpath*} \ + %{!static:%{shared:-shared} %{!shared:-call_shared}} %{taso}"