tccpe: no debug, no stabs
This commit is contained in:
parent
17cf0dcf70
commit
b7e75ccdb0
1 changed files with 4 additions and 1 deletions
5
tccpe.c
5
tccpe.c
|
@ -1,4 +1,4 @@
|
||||||
/*
|
/*
|
||||||
* TCCPE.C - PE file output for the Tiny C Compiler
|
* TCCPE.C - PE file output for the Tiny C Compiler
|
||||||
*
|
*
|
||||||
* Copyright (c) 2005-2007 grischka
|
* Copyright (c) 2005-2007 grischka
|
||||||
|
@ -1100,6 +1100,9 @@ static int pe_assign_addresses (struct pe_info *pe)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
if (c == sec_stab && 0 == pe->s1->do_debug)
|
||||||
|
continue;
|
||||||
|
|
||||||
strcpy(si->name, s->name);
|
strcpy(si->name, s->name);
|
||||||
si->cls = c;
|
si->cls = c;
|
||||||
si->ord = k;
|
si->ord = k;
|
||||||
|
|
Loading…
Reference in a new issue