diff options
Diffstat (limited to 'libc/sysdeps/linux/powerpc')
-rw-r--r-- | libc/sysdeps/linux/powerpc/crt0.S | 8 | ||||
-rw-r--r-- | libc/sysdeps/linux/powerpc/crt0.c | 4 |
2 files changed, 11 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/powerpc/crt0.S b/libc/sysdeps/linux/powerpc/crt0.S index ea71667d3..11738ad5b 100644 --- a/libc/sysdeps/linux/powerpc/crt0.S +++ b/libc/sysdeps/linux/powerpc/crt0.S @@ -54,4 +54,10 @@ _start: add 5,5,0 bl __uClibc_main - + +/* 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 + diff --git a/libc/sysdeps/linux/powerpc/crt0.c b/libc/sysdeps/linux/powerpc/crt0.c index a2615b02a..f577a5ae1 100644 --- a/libc/sysdeps/linux/powerpc/crt0.c +++ b/libc/sysdeps/linux/powerpc/crt0.c @@ -53,6 +53,10 @@ void _start2(void) p=((void *)p)+0x10; argc=*(int *)p; } + /* 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 */ + volatile void (*mainp)(int argc,void *argv,void *envp) = main; __uClibc_main(argc,p+1,p+2+argc); } |