mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 19:29:24 +02:00
* define __libc_csu_* symbols as weak symbols on aarch64-linux
(cherry picked from commit a20a7e3497
)
This commit is contained in:
parent
9b467007ea
commit
6db696a782
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user