Commit 8ff185df by Michael Meissner

*** empty log message ***

From-SVN: r703
parent af4a697f
...@@ -20,6 +20,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -20,6 +20,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#define DECSTATION #define DECSTATION
#define OSF_OS #define OSF_OS
#define HALF_PIC_DEBUG TARGET_DEBUG_B_MODE
#include "halfpic.h" #include "halfpic.h"
#define CPP_PREDEFINES "-DOSF -DOSF1 -Dbsd4_2 -DMIPSEL -Dhost_mips -Dmips -Dunix -DR3000 -DSYSTYPE_BSD" #define CPP_PREDEFINES "-DOSF -DOSF1 -Dbsd4_2 -DMIPSEL -Dhost_mips -Dmips -Dunix -DR3000 -DSYSTYPE_BSD"
...@@ -46,12 +48,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -46,12 +48,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
%{.s:%i} %{!.s:%g.s}}}" %{.s:%i} %{!.s:%g.s}}}"
#define CPP_SPEC "\ #define CPP_SPEC "\
%{.S: -D__LANGUAGE_ASSEMBLY %{!ansi:-DLANGUAGE_ASSEMBLY}} \ %{.S: -D__LANGUAGE_ASSEMBLY__ %{!ansi:-DLANGUAGE_ASSEMBLY}} \
%{.cc: -D__LANGUAGE_C_PLUS_PLUS} \ %{.cc: -D__LANGUAGE_C_PLUS_PLUS__} \
%{.cxx: -D__LANGUAGE_C_PLUS_PLUS} \ %{.cxx: -D__LANGUAGE_C_PLUS_PLUS__} \
%{.C: -D__LANGUAGE_C_PLUS_PLUS} \ %{.C: -D__LANGUAGE_C_PLUS_PLUS__} \
%{.m: -D__LANGUAGE_OBJECTIVE_C} \ %{.m: -D__LANGUAGE_OBJECTIVE_C__} \
%{!.S: -D__LANGUAGE_C %{!ansi:-DLANGUAGE_C}}" %{!.S: -D__LANGUAGE_C__ %{!ansi:-DLANGUAGE_C}}"
#define LINK_SPEC "\ #define LINK_SPEC "\
%{G*} \ %{G*} \
...@@ -63,12 +65,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -63,12 +65,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
%{!mmips-as: \ %{!mmips-as: \
%{v*: -v} \ %{v*: -v} \
%{pic-none: -noshrlib} %{noshrlib} \ %{pic-none: -noshrlib} %{noshrlib} \
%{!pic-none: -warn_nopic} \ %{pic-lib: %{!noshrlib: -warn_nopic}} \
%{nostdlib} %{glue}}" %{nostdlib} %{glue}}"
/* For now, force static libraries instead of shared, but do so that #define LIB_SPEC "-lc"
does not use -noshrlib, since the old linker does not provide it. */
#define LIB_SPEC "%{!pic-none: %{!pic-lib: -L/usr/ccs/lib }} -lc"
#define STARTFILE_SPEC "%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}" #define STARTFILE_SPEC "%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment