diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-09-28 17:17:20 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-09-28 17:17:20 +0000 |
commit | a1f8c408d8b59fd07428b84542d31a4ce96575e8 (patch) | |
tree | 4fef3377787c04280354d530b3ef8444c4cee357 /libc/sysdeps/linux/mips/crt1.S | |
parent | 4f4279c698ab827e251eccedc76507153f92e394 (diff) |
arm/crt1.S needs features.h and the weak _init/_fini independently of __PIC__. Add these weaks to mips/crt1.S as well.
Diffstat (limited to 'libc/sysdeps/linux/mips/crt1.S')
-rw-r--r-- | libc/sysdeps/linux/mips/crt1.S | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/mips/crt1.S b/libc/sysdeps/linux/mips/crt1.S index d0769e88a..35dc8c42e 100644 --- a/libc/sysdeps/linux/mips/crt1.S +++ b/libc/sysdeps/linux/mips/crt1.S @@ -37,7 +37,7 @@ #include <sys/regdef.h> - +#include <features.h> /* This is the canonical entry point, usually the first thing in the text @@ -70,10 +70,14 @@ */ .text - .globl __start - .type __start,@function - .type _init,@function - .type _fini,@function + .globl __start + .type __start,@function + .type _init,@function + .type _fini,@function +#ifndef __UCLIBC_CTOR_DTOR__ + .weak _init + .weak _fini +#endif .type main,@function .type __uClibc_main,@function |