diff options
Diffstat (limited to 'libc/sysdeps/linux/mips/crt0.S')
-rw-r--r-- | libc/sysdeps/linux/mips/crt0.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/mips/crt0.S b/libc/sysdeps/linux/mips/crt0.S index 000c2901a..9788d54ff 100644 --- a/libc/sysdeps/linux/mips/crt0.S +++ b/libc/sysdeps/linux/mips/crt0.S @@ -34,3 +34,9 @@ __start: jal __uClibc_main hlt: b hlt /* Crash if somehow it does return. */ +/* Stick in a dummy reference to main(), so that if an application + * is linking when the main() function is in a static library (.a) + * we can be sure that main() actually gets linked in */ +L_dummy_main_reference: + .long main + |