mirror of
git://git.musl-libc.org/musl
synced 2024-12-26 00:22:35 +00:00
4ce3cb5cdd
this is mainly in hopes of supporting c++ (not yet possible for other reasons) but will also help applications/libraries which use (and more often, abuse) the gcc __attribute__((__constructor__)) feature in "C" code. x86_64 and arm versions of the new startup asm are untested and may have minor problems.
17 lines
224 B
ArmAsm
17 lines
224 B
ArmAsm
.weak _init
|
|
.weak _fini
|
|
.global _start
|
|
_start:
|
|
mov fp,#0
|
|
mov lr,#0
|
|
ldr a2,[sp],#4
|
|
mov a3,sp
|
|
ldr a4,=_fini
|
|
str fp,[sp,#-4]!
|
|
str a1,[sp,#-4]!
|
|
str a4,[sp,#-4]!
|
|
ldr a4,=_init
|
|
ldr a1,=main
|
|
bl __libc_start_main
|
|
1: b 1b
|