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 7A855A2EFC for ; Tue, 15 Oct 2019 15:35:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 654E51EBB5; Tue, 15 Oct 2019 15:35:27 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 2C3621E8CE for ; Tue, 15 Oct 2019 15:35:25 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Oct 2019 06:35:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,300,1566889200"; d="scan'208";a="195280685" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.2]) by fmsmga007.fm.intel.com with ESMTP; 15 Oct 2019 06:35:23 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: jerinjacobk@gmail.com, bluca@debian.org, Bruce Richardson Date: Tue, 15 Oct 2019 14:35:06 +0100 Message-Id: <20191015133513.11376-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20191014113448.7442-1-bruce.richardson@intel.com> References: <20191014113448.7442-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 0/7] support all examples in a meson build 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" When build with meson, some examples were skipped when "-Dexamples=all" parameter was passed. Ignoring examples slated for removal by other patches[1], this set adds support for building the rest of the examples. The only exception is "bpf" which is a set of code snippets rather than code to be natively run. V2: drop patch 4 renaming the arm64 directory. [1] http://patches.dpdk.org/project/dpdk/list/?series=6683 Bruce Richardson (7): examples/bpf: remove from list of examples to build examples/ethtool: allow building as part of meson build examples/performance-thread: remove warning disabling examples/performance-thread: add l3fwd-thread to meson examples/performance-thread: add pthread shim to meson examples/server_node_efd: add node binary to meson build examples/server_node_efd: add server binary to meson build examples/bpf/meson.build | 6 ---- examples/ethtool/meson.build | 13 +++++++-- examples/meson.build | 10 +++++-- .../performance-thread/l3fwd-thread/Makefile | 6 ---- .../performance-thread/l3fwd-thread/main.c | 4 +-- .../l3fwd-thread/meson.build | 27 ++++++++++++++++++ .../pthread_shim/meson.build | 28 +++++++++++++++++++ .../node}/meson.build | 9 ++++-- .../server_node_efd/{ => server}/meson.build | 9 ++++-- 9 files changed, 87 insertions(+), 25 deletions(-) delete mode 100644 examples/bpf/meson.build create mode 100644 examples/performance-thread/l3fwd-thread/meson.build create mode 100644 examples/performance-thread/pthread_shim/meson.build rename examples/{performance-thread => server_node_efd/node}/meson.build (60%) rename examples/server_node_efd/{ => server}/meson.build (57%) -- 2.21.0