DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] common/rte_memcpy: Fix x86intrin.h missed
@ 2015-03-13  7:02 Michael Qiu
  2015-03-13  7:08 ` Wang, Zhihong
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Michael Qiu @ 2015-03-13  7:02 UTC (permalink / raw)
  To: dev

rte_memcpy.h(46): catastrophic error: cannot open source file "x86intrin.h"

For icc and old gcc, this header is not included.

Signed-off-by: Michael Qiu <michael.qiu@intel.com>
---
 lib/librte_eal/common/include/arch/x86/rte_memcpy.h | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/lib/librte_eal/common/include/arch/x86/rte_memcpy.h b/lib/librte_eal/common/include/arch/x86/rte_memcpy.h
index ac72069..bd10d36 100644
--- a/lib/librte_eal/common/include/arch/x86/rte_memcpy.h
+++ b/lib/librte_eal/common/include/arch/x86/rte_memcpy.h
@@ -43,7 +43,27 @@
 #include <stdio.h>
 #include <stdint.h>
 #include <string.h>
+#if (defined(__ICC) || (__GNUC__ == 4 &&  __GNUC_MINOR__ < 4))
+
+#ifdef __SSE__
+#include <xmmintrin.h>
+#endif
+
+#ifdef __SSE2__
+#include <emmintrin.h>
+#endif
+
+#if defined(__SSE4_2__) || defined(__SSE4_1__)
+#include <smmintrin.h>
+#endif
+
+#if defined(__AVX__)
+#include <immintrin.h>
+#endif
+
+#else
 #include <x86intrin.h>
+#endif
 
 #ifdef __cplusplus
 extern "C" {
-- 
1.9.3

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

end of thread, other threads:[~2015-03-18  4:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-13  7:02 [dpdk-dev] [PATCH] common/rte_memcpy: Fix x86intrin.h missed Michael Qiu
2015-03-13  7:08 ` Wang, Zhihong
2015-03-13  9:44 ` Ananyev, Konstantin
2015-03-16 16:05   ` Thomas Monjalon
2015-03-16 17:39     ` Ananyev, Konstantin
2015-03-17  8:46       ` Thomas Monjalon
2015-03-18  4:48   ` Qiu, Michael
2015-03-13 14:25 ` Mcnamara, John
2015-03-16  4:44   ` Qiu, Michael

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).