From 22c0decbb699887c9c26458e57e39903af0090a1 Mon Sep 17 00:00:00 2001
From: Craig Tiller <ctiller@google.com>
Date: Tue, 2 Feb 2016 14:26:50 -0800
Subject: [PATCH] Dont need this for 32bit

---
 src/core/support/wrap_memcpy.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/core/support/wrap_memcpy.c b/src/core/support/wrap_memcpy.c
index cb59cc7e50..ac30668ec1 100644
--- a/src/core/support/wrap_memcpy.c
+++ b/src/core/support/wrap_memcpy.c
@@ -40,7 +40,9 @@
  */
 
 #ifdef __linux__
+#ifdef __x86_64__
 __asm__(".symver memcpy,memcpy@GLIBC_2.2.5");
+#endif
 
 void *__wrap_memcpy(void *destination, const void *source, size_t num) {
   return memcpy(destination, source, num);
-- 
GitLab