From 201e52dd6ffec156bef553431275426dfa2bb4f7 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Wed, 29 Jun 2005 22:42:27 +0000 Subject: declare init/fini as weak if __UCLIBC_CTOR_DTOR__ is turned off --- libc/sysdeps/linux/powerpc/crt1.S | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libc/sysdeps/linux/powerpc/crt1.S') diff --git a/libc/sysdeps/linux/powerpc/crt1.S b/libc/sysdeps/linux/powerpc/crt1.S index eef12faf0..c042462e9 100644 --- a/libc/sysdeps/linux/powerpc/crt1.S +++ b/libc/sysdeps/linux/powerpc/crt1.S @@ -16,6 +16,7 @@ * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include /* Integer registers. */ #define r0 0 #define r1 1 @@ -36,6 +37,10 @@ .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 -- cgit v1.2.3