From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 6B6F1AFD5 for ; Tue, 24 Jun 2014 02:23:09 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 23 Jun 2014 17:18:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.01,533,1400050800"; d="scan'208";a="552275778" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 23 Jun 2014 17:23:24 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id s5O0NMEw004011; Tue, 24 Jun 2014 01:23:22 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id s5O0NMsp017269; Tue, 24 Jun 2014 01:23:22 +0100 Received: (from bricha3@localhost) by sivswdev02.ir.intel.com with id s5O0NMt3017265; Tue, 24 Jun 2014 01:23:22 +0100 From: Bruce Richardson To: dev@dpdk.org Date: Tue, 24 Jun 2014 01:23:04 +0100 Message-Id: <1403569384-16758-3-git-send-email-bruce.richardson@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1403569384-16758-1-git-send-email-bruce.richardson@intel.com> References: <1403569384-16758-1-git-send-email-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 2/2] bsdapp: disable ACL library compilation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Jun 2014 00:23:09 -0000 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