From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id B2840385829A; Wed, 7 Feb 2024 14:08:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B2840385829A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1707314880; bh=ww6JBLag2LNMlVku6z87p+y61wxwqMiODKNtUnhjefs=; h=From:To:Subject:Date:From; b=YS6wCg5kj4Lv2V0B/L6cDRSSr/UrQ24J8UyH4dahh4zb3maRkKlkVtSuAiEa5ikKa l78+swhCHpjpE7M4ZwctVuv+tAs446dF+inCD5JRyH2nvbyea+OPM//t4MG0jNYLxg RVH8jlhHmVwRQtyyz/OmohEP04bsZkwod6zxv4sM= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Adhemerval Zanella To: glibc-cvs@sourceware.org Subject: [glibc/azanella/clang] arm: Fix clang multi-arch build with ld.bfd X-Act-Checkin: glibc X-Git-Author: Adhemerval Zanella X-Git-Refname: refs/heads/azanella/clang X-Git-Oldrev: 71dfb79afac6a21fdd92016f73c3bad87ead4938 X-Git-Newrev: 971b4ffa1fd1f0437f56dee9f1ecc5c004430163 Message-Id: <20240207140800.B2840385829A@sourceware.org> Date: Wed, 7 Feb 2024 14:08:00 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=971b4ffa1fd1f0437f56dee9f1ecc5c004430163 commit 971b4ffa1fd1f0437f56dee9f1ecc5c004430163 Author: Adhemerval Zanella Date: Fri Dec 9 15:22:53 2022 -0300 arm: Fix clang multi-arch build with ld.bfd clang binds autogenerated memcpy/memset/memchr calls to the hidden internal symbols, different than gcc that binds without hidden attribute. And this triggers an linker issue with bfd: ld: BFD (GNU Binutils for Ubuntu) 2.38 assertion fail ../../bfd/elf32-arm.c:4286 Similar to other architectures, bind internal memcpy and memcpy symbols to the generic interface instead. Diff: --- sysdeps/arm/arm-ifunc.h | 9 --------- sysdeps/arm/armv7/multiarch/memchr.c | 2 -- sysdeps/arm/armv7/multiarch/memchr_noneon.S | 4 ++++ sysdeps/arm/armv7/multiarch/memcpy.c | 2 -- sysdeps/arm/armv7/multiarch/memcpy_arm.S | 4 ++++ 5 files changed, 8 insertions(+), 13 deletions(-) diff --git a/sysdeps/arm/arm-ifunc.h b/sysdeps/arm/arm-ifunc.h index c1aa43a9ea..fa4322bebb 100644 --- a/sysdeps/arm/arm-ifunc.h +++ b/sysdeps/arm/arm-ifunc.h @@ -23,12 +23,3 @@ #define arm_libc_ifunc_redirected(redirected_name, name, expr) \ __ifunc (redirected_name, name, expr(hwcap), int hwcap, INIT_ARCH) - -#if defined SHARED -# define arm_libc_ifunc_hidden_def(redirect_name, name) \ - __hidden_ver1 (name, __GI_##name, redirect_name) \ - __attribute__ ((visibility ("hidden"))) \ - __attribute_copy__ (name) -#else -# define arm_libc_ifunc_hidden_def(redirect_name, name) -#endif diff --git a/sysdeps/arm/armv7/multiarch/memchr.c b/sysdeps/arm/armv7/multiarch/memchr.c index cd5d53bc03..17e710b413 100644 --- a/sysdeps/arm/armv7/multiarch/memchr.c +++ b/sysdeps/arm/armv7/multiarch/memchr.c @@ -30,6 +30,4 @@ # include "ifunc-memchr.h" arm_libc_ifunc_redirected (__redirect_memchr, memchr, IFUNC_SELECTOR); - -arm_libc_ifunc_hidden_def (__redirect_memchr, memchr); #endif diff --git a/sysdeps/arm/armv7/multiarch/memchr_noneon.S b/sysdeps/arm/armv7/multiarch/memchr_noneon.S index b1fb54018d..982b9f2789 100644 --- a/sysdeps/arm/armv7/multiarch/memchr_noneon.S +++ b/sysdeps/arm/armv7/multiarch/memchr_noneon.S @@ -3,3 +3,7 @@ #define libc_hidden_builtin_def(name) #include + +#if IS_IN (libc) && !defined (__ARM_NEON__) +strong_alias (__memchr_noneon, __GI_memchr) +#endif diff --git a/sysdeps/arm/armv7/multiarch/memcpy.c b/sysdeps/arm/armv7/multiarch/memcpy.c index 86f30522aa..50d1ca8cd4 100644 --- a/sysdeps/arm/armv7/multiarch/memcpy.c +++ b/sysdeps/arm/armv7/multiarch/memcpy.c @@ -30,6 +30,4 @@ # include "ifunc-memcpy.h" arm_libc_ifunc_redirected (__redirect_memcpy, memcpy, IFUNC_SELECTOR); - -arm_libc_ifunc_hidden_def (__redirect_memcpy, memcpy); #endif diff --git a/sysdeps/arm/armv7/multiarch/memcpy_arm.S b/sysdeps/arm/armv7/multiarch/memcpy_arm.S index e4a9a68c42..d71493fdb3 100644 --- a/sysdeps/arm/armv7/multiarch/memcpy_arm.S +++ b/sysdeps/arm/armv7/multiarch/memcpy_arm.S @@ -8,3 +8,7 @@ strong_alias (__memcpy_arm, __aeabi_memcpy) strong_alias (__memcpy_arm, __aeabi_memcpy4) strong_alias (__memcpy_arm, __aeabi_memcpy8) + +#if IS_IN (libc) && !defined (__ARM_NEON__) +strong_alias (__memcpy_arm, __GI_memcpy) +#endif