From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 895E3A04FD; Tue, 14 Jan 2020 12:30:32 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7CCF11C22C; Tue, 14 Jan 2020 12:30:03 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 5B1AC1C1F3 for ; Tue, 14 Jan 2020 12:29:58 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Jan 2020 03:29:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,432,1571727600"; d="scan'208";a="248239083" Received: from silpixa00400214.ir.intel.com (HELO silpixa00400214.ger.corp.intel.com) ([10.237.222.119]) by fmsmga001.fm.intel.com with ESMTP; 14 Jan 2020 03:29:57 -0800 From: Reshma Pattan To: dev@dpdk.org Cc: Reshma Pattan Date: Tue, 14 Jan 2020 11:29:45 +0000 Message-Id: <20200114112945.39375-6-reshma.pattan@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20200114112945.39375-1-reshma.pattan@intel.com> References: <20200114112945.39375-1-reshma.pattan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 5/5] net/ixgbe: add arm vector support in meson X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Add missing arm vector build support to meson.build. Signed-off-by: Reshma Pattan --- drivers/net/ixgbe/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ixgbe/meson.build b/drivers/net/ixgbe/meson.build index 6667af634..06cf42a4a 100644 --- a/drivers/net/ixgbe/meson.build +++ b/drivers/net/ixgbe/meson.build @@ -26,6 +26,8 @@ deps += ['hash', 'security'] if arch_subdir == 'x86' sources += files('ixgbe_rxtx_vec_sse.c') +elif arch_subdir == 'arm' + sources += files('ixgbe_rxtx_vec_neon.c') endif includes += include_directories('base') -- 2.21.0