From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH 2/2] bsdapp: disable ACL library compilation Date: Tue, 24 Jun 2014 01:23:04 +0100 Message-ID: <1403569384-16758-3-git-send-email-bruce.richardson@intel.com> References: <1403569384-16758-1-git-send-email-bruce.richardson@intel.com> To: dev-VfR2kkLFssw@public.gmane.org Return-path: In-Reply-To: <1403569384-16758-1-git-send-email-bruce.richardson-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces-VfR2kkLFssw@public.gmane.org Sender: "dev" Using gcc 4.8 on FreeBSD 10, support for SSE4.x is not detected by the compiler, meaning that the ACL library, which depends on SSE4.2 cannot compile. Disable this library for the native target allows compiles to succeed on FreeBSD 10 using gcc. Signed-off-by: Bruce Richardson --- config/defconfig_x86_64-native-bsdapp-gcc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/defconfig_x86_64-native-bsdapp-gcc b/config/defconfig_x86_64-native-bsdapp-gcc index e91738b..9cb6bca 100644 --- a/config/defconfig_x86_64-native-bsdapp-gcc +++ b/config/defconfig_x86_64-native-bsdapp-gcc @@ -69,3 +69,8 @@ CONFIG_RTE_ARCH_X86_64=y # CONFIG_RTE_TOOLCHAIN="gcc" CONFIG_RTE_TOOLCHAIN_GCC=y + +# +# gcc doesn't detect sse4.x support correctly on bsd, so disable ACL lib +# +CONFIG_RTE_LIBRTE_ACL=n -- 1.9.3