Mail Archives: djgpp-workers/1998/01/14/17:58:42
Could somebody compile the following code with and without the
-g option and see if bombs out when -g is specified. On my compiler
no -g, or -gstabs work, but -g gives a duplicate symbol error
from the assembler. It appears that the debug info has the wrong labels.
I sent a message off to egcs but forget to copy dj-workers.
BTW - Kenner released 2.8.0 for those who have been waiting...
Andy
/* Provide functions that some versions of the linker use to default
the start address if -e symbol is not used, to avoid the warning
message saying the start address is defaulted. */
extern void start() __asm__("start");
extern void _start() __asm__("_start");
extern void __start() __asm__("__start");
void start() {}
void _start() {}
void __start() {}
- Raw text -