public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v1 1/1] CryptoPkg/IntrinsicLib: Fix CLANG38 IA32 build problem
@ 2019-06-05  5:24 Xiaoyu Lu
  2019-06-05  5:56 ` [edk2-devel] " Liming Gao
  0 siblings, 1 reply; 11+ messages in thread
From: Xiaoyu Lu @ 2019-06-05  5:24 UTC (permalink / raw)
  To: devel; +Cc: Xiaoyu Lu, Dandan Bi, Jian J Wang

When use clang-3.8 to build the NetworkPkg, compiler optimization
may use memcpy for memory copy. For example:

 CryptoPkg/Library/OpensslLib/openssl/ssl/ssl_rsa.c:918: undefined
 reference to `memcpy'`

Compiler optimization is sophisticated, but we can work around it
use __attribute__((__used__)) to informs the compiler that symbol
should be retained in the object file, even if it may be
unreferenced.

Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Dandan Bi <dandan.bi@intel.com>
Signed-off-by: Xiaoyu Lu <xiaoyux.lu@intel.com>
---
 CryptoPkg/Library/IntrinsicLib/CopyMem.c | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/CryptoPkg/Library/IntrinsicLib/CopyMem.c b/CryptoPkg/Library/IntrinsicLib/CopyMem.c
index e29b4918d200..7faf5a34d8c1 100644
--- a/CryptoPkg/Library/IntrinsicLib/CopyMem.c
+++ b/CryptoPkg/Library/IntrinsicLib/CopyMem.c
@@ -10,8 +10,21 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
 #include <Base.h>
 #include <Library/BaseMemoryLib.h>
 
+#if defined(__clang__) && !defined(__APPLE__)
+
+/* Copies bytes between buffers */
+static __attribute__((__used__))
+void * __memcpy (void *dest, const void *src, unsigned int count)
+{
+  return CopyMem (dest, src, (UINTN)count);
+}
+__attribute__((__alias__("__memcpy")))
+void * memcpy (void *dest, const void *src, unsigned int count);
+
+#else
 /* Copies bytes between buffers */
 void * memcpy (void *dest, const void *src, unsigned int count)
 {
   return CopyMem (dest, src, (UINTN)count);
 }
+#endif
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-06-06  3:50 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-05  5:24 [PATCH v1 1/1] CryptoPkg/IntrinsicLib: Fix CLANG38 IA32 build problem Xiaoyu Lu
2019-06-05  5:56 ` [edk2-devel] " Liming Gao
2019-06-05  6:33   ` Xiaoyu Lu
2019-06-05  7:28     ` Liming Gao
2019-06-05  7:34       ` Xiaoyu Lu
2019-06-05  7:37         ` Liming Gao
2019-06-05  7:50           ` Xiaoyu Lu
2019-06-05  7:56             ` Liming Gao
     [not found]             ` <15A53E5388BBDBAF.17041@groups.io>
2019-06-06  3:23               ` Liming Gao
2019-06-06  3:38     ` Andrew Fish
2019-06-06  3:50       ` Liming Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox