From 454e03485bd33d7b1b15d0db4506dcad016eeca7 Mon Sep 17 00:00:00 2001 From: Tom Wood Date: Fri, 18 Sep 1992 10:42:19 +0000 Subject: [PATCH] (PERFERRED_DEBUGGING_TYPE): Compute based on m88k_version. (PERFERRED_DEBUGGING_TYPE): Compute based on m88k_version. (CPU_DEFAULT): Make it -m88000. From-SVN: r2151 --- gcc/config/m88k/dgux.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/gcc/config/m88k/dgux.h b/gcc/config/m88k/dgux.h index 796ae1e8ff2..2868a04d8f8 100644 --- a/gcc/config/m88k/dgux.h +++ b/gcc/config/m88k/dgux.h @@ -27,7 +27,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* DWARF_DEBUGGING_INFO defined in svr4.h. */ #define SDB_DEBUGGING_INFO #define PREFERRED_DEBUGGING_TYPE \ - (VERSION_0300_SYNTAX ? DWARF_DEBUG : SDB_DEBUG) + (GET_VERSION_0300_SYNTAX ? DWARF_DEBUG : SDB_DEBUG) #ifndef NO_BUGS #define AS_BUG_IMMEDIATE_LABEL @@ -58,6 +58,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define TARGET_DEFAULT (MASK_CHECK_ZERO_DIV | \ MASK_OCS_DEBUG_INFO | \ MASK_OCS_FRAME_POSITION) +#undef CPU_DEFAULT +#define CPU_DEFAULT MASK_88000 /* Macros to be automatically defined. __svr4__ is our extension. __CLASSIFY_TYPE__ is used in the and header @@ -78,7 +80,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define ASM_SPEC "\ %{V} %{v:%{!V:-V}} %{pipe: - %{msvr4:%{mversion-03.00:-KV3}}}\ %{!mlegend:%{mstandard:-Wc,off}}\ -%{mlegend:-Wc,-fix-bb,-h\"gcc-2.0.3\",-s\"%i\"\ +%{mlegend:-Wc,-fix-bb,-h\"gcc-2.2.12\",-s\"%i\"\ %{traditional:,-lc}%{!traditional:,-lansi-c}\ %{mstandard:,-keep-std}\ %{mkeep-coff:,-keep-coff}\ @@ -120,7 +122,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* DGUX V.4 isn't quite ELF--yet. */ #undef VERSION_0300_SYNTAX -#define VERSION_0300_SYNTAX (TARGET_SVR4 && TARGET_VERSION_0300) +#define VERSION_0300_SYNTAX (TARGET_SVR4 && m88k_version_0300) + +/* Same, but used before OVERRIDE_OPTIONS has been processed. */ +#define GET_VERSION_0300_SYNTAX \ + (TARGET_SVR4 && m88k_version != 0 && strcmp (m88k_version, "03.00") >= 0) /* Output the legend info for mxdb when debugging except if standard debugging information only is explicitly requested. */ -- 2.30.2