From: Adhemerval Zanella Date: Wed, 25 Feb 2015 12:49:51 +0000 (-0500) Subject: powerpc: Fix memmove static build X-Git-Tag: upstream/2.30~6296 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=115e0de72a2aa6f4999f0c0c0184cbabdfec6c63;p=external%2Fglibc.git powerpc: Fix memmove static build This patch fixes the missing "__memcpy_ppc" symbol for memmove-ppc64 object in static builds. Since memcpy ifunc is not enabled in static mode, the specialized symbols are not provided. The patch changed the it to just "__memcpy" instead. --- diff --git a/ChangeLog b/ChangeLog index 296f5e8..bf23bc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-02-25 Adhemerval Zanella + + * sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c: Define memcpy + to __memcpy_ppc only for static builds. + 2015-02-25 Joseph Myers [BZ #18020] diff --git a/sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c b/sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c index a2d8790..b433a27 100644 --- a/sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c +++ b/sysdeps/powerpc/powerpc64/multiarch/memmove-ppc64.c @@ -32,7 +32,9 @@ extern __typeof (memmove) __memmove_ppc attribute_hidden; #define MEMMOVE __memmove_ppc extern __typeof (memcpy) __memcpy_ppc attribute_hidden; -#define memcpy __memcpy_ppc +#ifdef SHARED +# define memcpy __memcpy_ppc +#endif #if IS_IN (libc) && defined(SHARED) # undef libc_hidden_builtin_def