From: Bruce Richardson Date: Tue, 24 Jun 2014 00:23:04 +0000 (+0100) Subject: acl: disable for bsd X-Git-Tag: spdx-start~10579 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=c3111b70b27e33dd37bb5807d11f19a65a8f45c2;p=dpdk.git acl: disable for bsd 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 Acked-by: Thomas Monjalon --- diff --git a/config/defconfig_x86_64-native-bsdapp-gcc b/config/defconfig_x86_64-native-bsdapp-gcc index e91738b5db..223419359e 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