mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
The compiler might not see that internal definition is an alias due the libc_ifunc macro, which redefines __strchrnul. With gcc 6 it fails with: In file included from <command-line>:0:0: ./../include/libc-symbols.h:472:33: error: ‘__EI___strchrnul’ aliased to undefined symbol ‘__GI___strchrnul’ extern thread __typeof (name) __EI_##name \ ^ ./../include/libc-symbols.h:468:3: note: in expansion of macro ‘__hidden_ver2’ __hidden_ver2 (, local, internal, name) ^~~~~~~~~~~~~ ./../include/libc-symbols.h:476:29: note: in expansion of macro ‘__hidden_ver1’ # define hidden_def(name) __hidden_ver1(__GI_##name, name, name); ^~~~~~~~~~~~~ ./../include/libc-symbols.h:557:32: note: in expansion of macro ‘hidden_def’ # define libc_hidden_def(name) hidden_def (name) ^~~~~~~~~~ ../sysdeps/powerpc/powerpc64/multiarch/strchrnul.c:38:1: note: in expansion of macro ‘libc_hidden_def’ libc_hidden_def (__strchrnul) ^~~~~~~~~~~~~~~ Use libc_ifunc_hidden as stpcpy. Checked on powerpc64 with gcc 6 and gcc 13. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/* Multiple versions of strchrnul.
|
|
Copyright (C) 2013-2023 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#if IS_IN (libc)
|
|
# include <string.h>
|
|
# include <shlib-compat.h>
|
|
# include "init-arch.h"
|
|
|
|
extern __typeof (__strchrnul) __strchrnul_ppc attribute_hidden;
|
|
extern __typeof (__strchrnul) __strchrnul_power7 attribute_hidden;
|
|
extern __typeof (__strchrnul) __strchrnul_power8 attribute_hidden;
|
|
|
|
/* Avoid DWARF definition DIE on ifunc symbol so that GDB can handle
|
|
ifunc symbol properly. */
|
|
libc_ifunc_hidden (__strchrnul, __strchrnul,
|
|
(hwcap2 & PPC_FEATURE2_ARCH_2_07
|
|
&& hwcap & PPC_FEATURE_HAS_ALTIVEC)
|
|
? __strchrnul_power8 :
|
|
(hwcap & PPC_FEATURE_ARCH_2_06)
|
|
? __strchrnul_power7
|
|
: __strchrnul_ppc);
|
|
|
|
libc_hidden_def (__strchrnul)
|
|
weak_alias (__strchrnul, strchrnul)
|
|
#else
|
|
#include <string/strchrnul.c>
|
|
#endif
|