mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-21 03:14:19 +08:00
If we don't specify -g, actually suppress debugging output
This commit is contained in:
parent
88dce03d8e
commit
bb88d011e3
4
nasm.c
4
nasm.c
@ -173,6 +173,10 @@ int main(int argc, char **argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* If debugging info is disabled, suppress any debug calls */
|
||||
if (!using_debug_info)
|
||||
ofmt->current_dfmt = &null_debug_form;
|
||||
|
||||
if (ofmt->stdmac)
|
||||
pp_extra_stdmac (ofmt->stdmac);
|
||||
parser_global_info (ofmt, &location);
|
||||
|
@ -185,6 +185,7 @@ static int symtabsection;
|
||||
static unsigned char *stabbuf=0,*stabstrbuf=0,*stabrelbuf=0;
|
||||
static int stablen,stabstrlen,stabrellen;
|
||||
|
||||
static struct dfmt df_stabs;
|
||||
|
||||
void stabs_init(struct ofmt *,void *,FILE *,efunc );
|
||||
void stabs_linenum(const char *filename,long linenumber,long);
|
||||
@ -917,7 +918,7 @@ static void elf_write(void)
|
||||
* sections `.comment', `.shstrtab', `.symtab' and `.strtab',
|
||||
* then optionally relocation sections for the user sections.
|
||||
*/
|
||||
if (of_elf.current_dfmt)
|
||||
if (of_elf.current_dfmt == &df_stabs)
|
||||
nsections=8;
|
||||
else
|
||||
nsections = 5; /* SHN_UNDEF and the fixed ones */
|
||||
@ -934,7 +935,7 @@ static void elf_write(void)
|
||||
}
|
||||
}
|
||||
|
||||
if (of_elf.current_dfmt) {
|
||||
if (of_elf.current_dfmt == &df_stabs) {
|
||||
/* in case the debug information is wanted, just add these three sections... */
|
||||
add_sectname("",".stab");
|
||||
add_sectname("",".stabstr");
|
||||
@ -1019,7 +1020,7 @@ static void elf_write(void)
|
||||
elf_section_header (p - shstrtab, 9, 0, sects[i]->rel, TRUE,
|
||||
sects[i]->rellen, nsects+3, i+1, 4, 8);
|
||||
}
|
||||
if (of_elf.current_dfmt) {
|
||||
if (of_elf.current_dfmt == &df_stabs) {
|
||||
/* for debugging information, create the last three sections
|
||||
which are the .stab , .stabstr and .rel.stab sections respectively */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user