mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 22:46:01 +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
|
.text
|
||||||
.align 2
|
.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
|
.globl _start
|
||||||
.type _start,#function
|
.type _start,#function
|
||||||
_start:
|
_start:
|
||||||
|
Loading…
Reference in New Issue
Block a user