mbox series

[v2,0/7] support all examples in a meson build

Message ID 20191015133513.11376-1-bruce.richardson@intel.com (mailing list archive)
Headers
Series support all examples in a meson build |

Message

Bruce Richardson Oct. 15, 2019, 1:35 p.m. UTC
  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%)
  

Comments

Luca Boccassi Oct. 16, 2019, 11:47 a.m. UTC | #1
On Tue, 2019-10-15 at 14:35 +0100, Bruce Richardson wrote:
> 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

Series-acked-by: Luca Boccassi <bluca@debian.org>