Commit 2aa82cbe by Michael Meissner

Provide start, _start for gld to use as start address.

From-SVN: r9797
parent 24ba1fb8
......@@ -90,3 +90,11 @@ dfoo ()
return table[idx++];
}
/* 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");
void start() {}
void _start() {}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment