From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1791) id E078838582BE; Wed, 30 Aug 2023 12:42:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E078838582BE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1693399358; bh=hrJb2T82cz9diAJ3Pfj1jAl6KJTtzJtYBIajjCtm0+g=; h=From:To:Subject:Date:From; b=LVDqLqumW2rgKe0Bvm+U9t8Mms7vBddq2Lz1+fs1ygWaFOvSF1c6GJ9bO7wHqg6xn lSlBre0z+vlHxe+M6AJoG79qyQ1jZLHvx7bK0L8YtT2lX2rb8blYlLA0NpzloJ7MT0 YqA/GvqUDszNELms3ipDlyLjyE/5QOoW1RuTctEI= 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: 1443f898bcbb63b45f28d96fbaee87c32403c19e X-Git-Newrev: fd8e6e1e720dcd920763f5e65094d6b64ebcd3f9 Message-Id: <20230830124238.E078838582BE@sourceware.org> Date: Wed, 30 Aug 2023 12:42:38 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=fd8e6e1e720dcd920763f5e65094d6b64ebcd3f9 commit fd8e6e1e720dcd920763f5e65094d6b64ebcd3f9 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 93dbe69183..a000806f96 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 18f88a8762..9e53c4fc7a 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 cf311fdb3e..af25851cba 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