From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 5A44810A3 for ; Fri, 2 Feb 2018 12:11:15 +0100 (CET) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Feb 2018 03:11:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,448,1511856000"; d="scan'208";a="14503724" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.77]) by orsmga007.jf.intel.com with SMTP; 02 Feb 2018 03:11:12 -0800 Received: by (sSMTP sendmail emulation); Fri, 02 Feb 2018 11:11:11 +0000 Date: Fri, 2 Feb 2018 11:11:11 +0000 From: Bruce Richardson To: dev@dpdk.org Message-ID: <20180202111110.GA18568@bricha3-MOBL3.ger.corp.intel.com> References: <20180131174249.257933-1-bruce.richardson@intel.com> <20180201142011.133441-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180201142011.133441-1-bruce.richardson@intel.com> Organization: Intel Research and Development Ireland Ltd. User-Agent: Mutt/1.9.1 (2017-09-22) Subject: Re: [dpdk-dev] [PATCH v2 0/5] Fix meson build on FreeBSD 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: , X-List-Received-Date: Fri, 02 Feb 2018 11:11:16 -0000 On Thu, Feb 01, 2018 at 02:20:06PM +0000, Bruce Richardson wrote: > There are a few issues with building DPDK for FreeBSD using the > meson build system, specifically: > * the kernel modules aren't compiling due to an incorrect VPATH > * a number of unit tests depend on libraries not supported on BSD > * applications and examples need to be linked with execinfo library. > > ---- > V2: merged patch 6 in with patch 2, since it's the same fix for main apps > and for the examples. > > Bruce Richardson (5): > eal/bsdapp: fix building kernel modules > build: fix dependency on execinfo for BSD meson builds > test/test: mark tests as skipped when required lib not available > test/test: fix dependency on power lib for BSD meson build > test/test: fix dependency on KNI lib for BSD meson build > > app/test-eventdev/meson.build | 1 + > app/test-pmd/meson.build | 1 + > examples/meson.build | 3 ++- > lib/librte_eal/bsdapp/BSDmakefile.meson | 1 + > lib/librte_eal/meson.build | 1 - > test/test/meson.build | 8 +++++++- > test/test/test_kni.c | 13 +++++++++++++ > test/test/test_power.c | 12 ++++++++++++ > test/test/test_power_acpi_cpufreq.c | 11 +++++++++++ > test/test/test_power_kvm_vm.c | 11 +++++++++++ > 10 files changed, 59 insertions(+), 3 deletions(-) > > -- Applied to dpdk-next-build /Bruce