mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
x86_64: Fix build with --disable-multiarch (BZ 30721)
With multiarch disabled, the default memmove implementation provides the fortify routines for memcpy, mempcpy, and memmove. However, it does not provide the internal hidden definitions used when building with fortify enabled. The memset has a similar issue. Checked on x86_64-linux-gnu building with different options: default and --disable-multi-arch plus default, --disable-default-pie, --enable-fortify-source={2,3}, and --enable-fortify-source={2,3} with --disable-default-pie. Tested-by: Andreas K. Huettel <dilfridge@gentoo.org> Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
This commit is contained in:
parent
b163fca6c3
commit
51cb52214f
@ -1 +1 @@
|
||||
/* Implemented in memcpy.S. */
|
||||
/* Implemented in memmove.S. */
|
||||
|
@ -46,6 +46,9 @@ weak_alias (__mempcpy, mempcpy)
|
||||
|
||||
#ifndef USE_MULTIARCH
|
||||
libc_hidden_builtin_def (memmove)
|
||||
libc_hidden_builtin_def (__memmove_chk)
|
||||
libc_hidden_builtin_def (__memcpy_chk)
|
||||
libc_hidden_builtin_def (__mempcpy_chk)
|
||||
# if defined SHARED && IS_IN (libc)
|
||||
strong_alias (memmove, __memcpy)
|
||||
libc_hidden_ver (memmove, memcpy)
|
||||
|
@ -32,6 +32,7 @@
|
||||
#include "isa-default-impl.h"
|
||||
|
||||
libc_hidden_builtin_def (memset)
|
||||
libc_hidden_builtin_def (__memset_chk)
|
||||
|
||||
#if IS_IN (libc)
|
||||
libc_hidden_def (__wmemset)
|
||||
|
Loading…
Reference in New Issue
Block a user