diff options
Diffstat (limited to 'libc/sysdeps/linux/arm/crt0.S')
-rw-r--r-- | libc/sysdeps/linux/arm/crt0.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/crt0.S b/libc/sysdeps/linux/arm/crt0.S index 01bcb321f..65253881c 100644 --- a/libc/sysdeps/linux/arm/crt0.S +++ b/libc/sysdeps/linux/arm/crt0.S @@ -62,6 +62,7 @@ _start: /* Ok, now run uClibc's main() -- shouldn't return */ bl __uClibc_main +#if 0 /* this is already provided by crtbegin/crtend in the arm-elf compiler */ /* a little bit of stuff to support C++ */ .section .ctors,"aw" .align 4 @@ -74,3 +75,4 @@ __CTOR_LIST__: .global __DTOR_LIST__ __DTOR_LIST__: .long -1 +#endif |