From 9a01c31b94e54384ecab65a338f896d344bf3cad Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Mon, 16 Mar 2015 16:55:50 +0100 Subject: [PATCH] eal: fix build with icc and gcc < 4.4 x86intrin.h cannot be directly included as it is not always available. rte_common_vect.h handles compiler differences. Suggested-by: Konstantin Ananyev Signed-off-by: Thomas Monjalon --- lib/librte_eal/common/include/arch/x86/rte_memcpy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ac720696cc..82ea7c3a13 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,7 @@ #include #include #include -#include +#include #ifdef __cplusplus extern "C" { -- 2.20.1