This file is only used by cygwin, mingw and msdosdjgpp targets, which explicitly set PREFERRED_DEBUGGING_TYPE after including this file, so this change has no effect, except to eliminate an obsolete sdb reference here.
Jim
gcc/ * config/dbxcoff.h (PREFERRED_DEBUGGING_TYPE): Set to DBX_DEBUG. --- gcc/config/dbxcoff.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/dbxcoff.h b/gcc/config/dbxcoff.h index e5eef64..c20b4fe 100644 --- a/gcc/config/dbxcoff.h +++ b/gcc/config/dbxcoff.h @@ -25,10 +25,10 @@ along with GCC; see the file COPYING3. If not see #define DBX_DEBUGGING_INFO 1 -/* Generate SDB debugging information by default. */ +/* Generate DBX debugging information by default. */ #ifndef PREFERRED_DEBUGGING_TYPE -#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG +#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG #endif /* Be function-relative for block and source line stab directives. */ -- 2.7.4