From: Eric Botcazou Date: Mon, 5 Apr 2004 04:22:57 +0000 (+0200) Subject: sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set to DWARF2_DEBUG unconditionally. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ffc47306c2e13f9d65d98f2a6fd3ea277945ce5;p=platform%2Fupstream%2Fgcc.git sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set to DWARF2_DEBUG unconditionally. * config/sparc/sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set to DWARF2_DEBUG unconditionally. (ASM_DEBUG_SPEC): Set the default to --gdwarf2 unconditionally. From-SVN: r80425 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d5486f2..a2f3179 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-04-05 Eric Botcazou + + * config/sparc/sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set + to DWARF2_DEBUG unconditionally. + (ASM_DEBUG_SPEC): Set the default to --gdwarf2 unconditionally. + 2004-04-04 Ian Lance Taylor Nathanael Nerode diff --git a/gcc/config/sparc/sol2-bi.h b/gcc/config/sparc/sol2-bi.h index 43180c9..eab3a1a 100644 --- a/gcc/config/sparc/sol2-bi.h +++ b/gcc/config/sparc/sol2-bi.h @@ -216,17 +216,9 @@ #define MULTILIB_DEFAULTS { "m64" } #endif -/* We use stabs-in-elf in 32-bit mode, because that is what the native - toolchain uses. But gdb can't handle truncated 32-bit stabs so we - use dwarf2 in 64-bit mode. */ #undef PREFERRED_DEBUGGING_TYPE -#define PREFERRED_DEBUGGING_TYPE (TARGET_ARCH32 ? DBX_DEBUG : DWARF2_DEBUG) +#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG -/* We can't use the above definition for the purposes of specs. */ #if defined(HAVE_AS_GDWARF2_DEBUG_FLAG) && defined(HAVE_AS_GSTABS_DEBUG_FLAG) -# if DEFAULT_ARCH32_P -# define ASM_DEBUG_SPEC "%{gdwarf-2*:--gdwarf2}%{!gdwarf-2*:%{g*:--gstabs}}" -# else -# define ASM_DEBUG_SPEC "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}" -# endif +# define ASM_DEBUG_SPEC "%{gstabs*:--gstabs}%{!gstabs*:%{g*:--gdwarf2}}" #endif