From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Qiu Subject: [PATCH] librte_eal: Fix wrong header file for old gcc version Date: Mon, 24 Aug 2015 17:22:57 +0800 Message-ID: <1440408177-29394-1-git-send-email-michael.qiu@intel.com> To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id B9EF3688E for ; Mon, 24 Aug 2015 11:23:04 +0200 (CEST) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" For __SSE3__, the corresponding header file should be pmmintrin.h, tmmintrin.h works for __SSSE3__. Signed-off-by: Michael Qiu --- lib/librte_eal/common/include/arch/x86/rte_vect.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/librte_eal/common/include/arch/x86/rte_vect.h b/lib/librte_eal/common/include/arch/x86/rte_vect.h index b698797..8a4dace 100644 --- a/lib/librte_eal/common/include/arch/x86/rte_vect.h +++ b/lib/librte_eal/common/include/arch/x86/rte_vect.h @@ -51,6 +51,10 @@ #endif #ifdef __SSE3__ +#include +#endif + +#ifdef __SSSE3__ #include #endif -- 1.9.3