mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
S390: Fix introduction of __wcscpy and weak wcscpy symbols.
The recent commit 81a1443941
has introduced __wcscpy, __GI___wcscpy and the weak alias wcscpy.
This patch also introduces those symbols if glibc is build
with CFLAGS="-march=z13" where the ifunc is omitted.
ChangeLog:
* sysdeps/s390/wcscpy-vx.S: Add strong aliases to
__wcscpy, __GI___wcscpy and weak alias to wcscpy.
This commit is contained in:
parent
36f30c104f
commit
928b305d3f
@ -1,3 +1,8 @@
|
||||
2019-03-01 Stefan Liebler <stli@linux.ibm.com>
|
||||
|
||||
* sysdeps/s390/wcscpy-vx.S: Add strong aliases to
|
||||
__wcscpy, __GI___wcscpy and weak alias to wcscpy.
|
||||
|
||||
2019-03-01 Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
[BZ #20271]
|
||||
|
@ -111,6 +111,10 @@ ENTRY(WCSCPY_Z13)
|
||||
END(WCSCPY_Z13)
|
||||
|
||||
# if ! HAVE_WCSCPY_IFUNC
|
||||
strong_alias (WCSCPY_Z13, wcscpy)
|
||||
strong_alias (WCSCPY_Z13, __wcscpy)
|
||||
weak_alias (__wcscpy, wcscpy)
|
||||
# if defined SHARED && IS_IN (libc)
|
||||
strong_alias (__wcscpy, __GI___wcscpy)
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user