mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-22 19:09:31 +08:00
Prevent the generation of DWARF level 0 line number tables...
* as.c (dwarf_level): Initialise to 4 in case this is not set on the command line.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2020-07-30 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* as.c (dwarf_level): Initialise to 4 in case this is not set on
|
||||||
|
the command line.
|
||||||
|
|
||||||
2020-07-29 Maciej W. Rozycki <macro@linux-mips.org>
|
2020-07-29 Maciej W. Rozycki <macro@linux-mips.org>
|
||||||
|
|
||||||
* testsuite/gas/mips/global-local-symtab-sort-o32.d: New test.
|
* testsuite/gas/mips/global-local-symtab-sort-o32.d: New test.
|
||||||
|
2
gas/as.c
2
gas/as.c
@ -103,7 +103,7 @@ int verbose = 0;
|
|||||||
int flag_dwarf_cie_version = -1;
|
int flag_dwarf_cie_version = -1;
|
||||||
|
|
||||||
/* The maximum level of DWARF DEBUG information we should manufacture. */
|
/* 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
|
#if defined OBJ_ELF || defined OBJ_MAYBE_ELF
|
||||||
int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;
|
int flag_use_elf_stt_common = DEFAULT_GENERATE_ELF_STT_COMMON;
|
||||||
|
Reference in New Issue
Block a user