|
Message-Id: <20241123002016.514922-1-alex@alexrp.com> Date: Sat, 23 Nov 2024 01:20:16 +0100 From: Alex Rønne Petersen <alex@...xrp.com> To: musl@...ts.openwall.com Cc: Alex Rønne Petersen <alex@...xrp.com> Subject: [PATCH] s390x: Mark __tls_get_addr hidden before invoking it. Similar to what's done for __syscall_ret, __sigsetjmp_tail, etc. This fixes a linker error when building musl libc.so with zig cc. --- src/thread/s390x/__tls_get_offset.s | 1 + 1 file changed, 1 insertion(+) diff --git a/src/thread/s390x/__tls_get_offset.s b/src/thread/s390x/__tls_get_offset.s index 8ee92de8..2e0913cc 100644 --- a/src/thread/s390x/__tls_get_offset.s +++ b/src/thread/s390x/__tls_get_offset.s @@ -5,6 +5,7 @@ __tls_get_offset: aghi %r15, -160 la %r2, 0(%r2, %r12) +.hidden __tls_get_addr brasl %r14, __tls_get_addr ear %r1, %a0 -- 2.40.1
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.