Commit ae6b7a9d by Jim Wilson

(LINK_SPEC): Likewise.

(ASM_SPEC): Likewise.
(SIZE_TYPE): Delete.
(MAX_WCHAR_TYPE_SIZE): Define.

From-SVN: r6717
parent bc9082a2
...@@ -33,18 +33,19 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -33,18 +33,19 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
-DOSF -DOSF1 -Dbsd4_2 -DMIPSEL -Dhost_mips -Dmips -Dunix -DR3000 -DSYSTYPE_BSD \ -DOSF -DOSF1 -Dbsd4_2 -DMIPSEL -Dhost_mips -Dmips -Dunix -DR3000 -DSYSTYPE_BSD \
-Asystem(unix) -Asystem(xpg4) -Acpu(mips) -Amachine(mips)" -Asystem(unix) -Asystem(xpg4) -Acpu(mips) -Amachine(mips)"
#define ASM_SPEC "\ #define ASM_SPEC "\
%{mmips-as: \ %{mmips-as: \
%{pipe:%e:-pipe not supported} \ %{!.s:-nocpp} %{.s: %{cpp} %{nocpp}} \
%{EL} %{!EL:-EL} \ %{pipe: %e-pipe is not supported.} \
%{EB: %e-EB not supported} \ %{K}} \
%{!mrnames: %{!.s:-nocpp} %{.s: %{cpp} %{nocpp}}} \ %{G*} %{EB} %{EL} %{mips1} %{mips2} %{mips3} %{v} \
%{mips1} %{mips2} %{mips3} \ %{noasmopt:-O0} \
%{O:-O2} %{O1:-O2} %{O2:-O2} %{O3:-O3} \ %{!noasmopt:%{O:-O2} %{O1:-O2} %{O2:-O2} %{O3:-O3}} \
%{g} %{g0} %{g1} %{g2} %{g3} \ %{g} %{g0} %{g1} %{g2} %{g3} \
%{K} %{Q}} \ %{ggdb:-g} %{ggdb0:-g0} %{ggdb1:-g1} %{ggdb2:-g2} %{ggdb3:-g3} \
%{v*: -v} \ %{gstabs:-g} %{gstabs0:-g0} %{gstabs1:-g1} %{gstabs2:-g2} %{gstabs3:-g3} \
%{G*}" %{gstabs+:-g} %{gstabs+0:-g0} %{gstabs+1:-g1} %{gstabs+2:-g2} %{gstabs+3:-g3} \
%{gcoff:-g} %{gcoff0:-g0} %{gcoff1:-g1} %{gcoff2:-g2} %{gcoff3:-g3}"
#ifndef CROSS_COMPILE #ifndef CROSS_COMPILE
#define ASM_FINAL_SPEC "\ #define ASM_FINAL_SPEC "\
...@@ -78,13 +79,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -78,13 +79,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
%{.m: -D__LANGUAGE_OBJECTIVE_C__ -D__LANGUAGE_OBJECTIVE_C} \ %{.m: -D__LANGUAGE_OBJECTIVE_C__ -D__LANGUAGE_OBJECTIVE_C} \
%{!.S:%{!.s: -D__LANGUAGE_C__ -D__LANGUAGE_C %{!ansi:-DLANGUAGE_C}}}" %{!.S:%{!.s: -D__LANGUAGE_C__ -D__LANGUAGE_C %{!ansi:-DLANGUAGE_C}}}"
/* ??? This assumes that GNU as is always used with GNU ld, and MIPS as is
always used with MIPS ld. */
#define LINK_SPEC "\ #define LINK_SPEC "\
%{G*} \ %{G*} %{EL} %{EB} %{mips1} %{mips2} %{mips3} \
%{mmips-as: \ %{bestGnum} \
%{EL} %{!EL: -EL} \
%{EB: %e-EB not supported} \
%{mips1} %{mips2} %{mips3} \
%{bestGnum}} \
%{!mmips-as: \ %{!mmips-as: \
%{v*: -v} \ %{v*: -v} \
%{!noshrlib: %{pic-none: -noshrlib} %{!pic-none: -warn_nopic}} \ %{!noshrlib: %{pic-none: -noshrlib} %{!pic-none: -warn_nopic}} \
...@@ -122,11 +121,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ ...@@ -122,11 +121,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
%{pic-names*: -mhalf-pic} \ %{pic-names*: -mhalf-pic} \
%{!pic-*: -mhalf-pic}" %{!pic-*: -mhalf-pic}"
/* Specify size_t, ptrdiff_t, and wchar_t types. */ /* Specify wchar_t types. */
#define SIZE_TYPE "long unsigned int"
#define PTRDIFF_TYPE "int"
#define WCHAR_TYPE "unsigned int" #define WCHAR_TYPE "unsigned int"
#define WCHAR_TYPE_SIZE BITS_PER_WORD #define WCHAR_TYPE_SIZE BITS_PER_WORD
#define MAX_WCHAR_TYPE_SIZE MAX_LONG_TYPE_SIZE
/* OSF/1 uses gas, not the mips assembler. */ /* OSF/1 uses gas, not the mips assembler. */
#define TARGET_DEFAULT MASK_GAS #define TARGET_DEFAULT MASK_GAS
......
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