From: Thomas Monjalon Date: Mon, 16 Mar 2015 15:55:50 +0000 (+0100) Subject: eal: fix build with icc and gcc < 4.4 X-Git-Tag: spdx-start~9438 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=9a01c31b94e54384ecab65a338f896d344bf3cad;hp=f07246766dee1af3b078b1c23497cac755fdc12c;p=dpdk.git 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 --- 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" {