authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-10 22:52:27+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-10-11 03:20:39+02:00
log92ae5818d26925af7816fabcaec85236133b9e46
treea7bb0ef06cd2bbea1401e8ee77873b5e11544e82
parent2309d07e20fe99a4bac487978825bdfc65842b51

musl: Align _init/_fini symbols correctly on arm.

See upstream patch: https://www.openwall.com/lists/musl/2024/10/10/4

1 files changed, 2 insertions(+), 0 deletions(-)

lib/libc/musl/crt/arm/crti.s+2
...@@ -3,11 +3,13 @@...@@ -3,11 +3,13 @@
3.section .init3.section .init
4.global _init4.global _init
5.type _init,%function5.type _init,%function
6.align 2
6_init:7_init:
7 push {r0,lr}8 push {r0,lr}
89
9.section .fini10.section .fini
10.global _fini11.global _fini
11.type _fini,%function12.type _fini,%function
13.align 2
12_fini:14_fini:
13 push {r0,lr}15 push {r0,lr}