* define __libc_csu_* symbols as weak symbols on aarch64-linux

(cherry picked from commit a20a7e3497)
This commit is contained in:
florian 2022-04-10 23:19:34 +02:00
parent 9b467007ea
commit 6db696a782

View File

@ -7,6 +7,18 @@
.text
.align 2
.globl __libc_csu_init
.type __libc_csu_init,#function
.weak __libc_csu_init
__libc_csu_init:
ret
.globl __libc_csu_fini
.type __libc_csu_fini,#function
.weak __libc_csu_fini
__libc_csu_fini:
ret
.globl _start
.type _start,#function
_start: