From: Nick Clifton Date: Thu, 30 Jul 2020 07:45:04 +0000 (+0100) Subject: Default to DWARF level 4 in the assembler. X-Git-Tag: binutils-2_35_1~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6347a63b19b6e8dee12ef7649512581471c85c69;p=thirdparty%2Fbinutils-gdb.git Default to DWARF level 4 in the assembler. * as.c (dwatf_level): Default to level 4 in case version is not set on the command line. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 9af16a03a29..355d70d8a1d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2020-07-30 Nick Clifton + + * as.c (dwatf_level): Default to level 4 in case version is not + set on the command line. + 2020-07-28 H.J. Lu PR gas/26305 diff --git a/gas/as.c b/gas/as.c index 4c5881abd88..c2da78870ef 100644 --- a/gas/as.c +++ b/gas/as.c @@ -103,7 +103,7 @@ int verbose = 0; int flag_dwarf_cie_version = -1; /* The maximum level of DWARF DEBUG information we should manufacture. */ -unsigned int dwarf_level = 0; +unsigned int dwarf_level = 4; #if defined OBJ_ELF || defined OBJ_MAYBE_ELF int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;