[dpdk-dev,3/6] examples: disable unsupported examples on BSD

Message ID 20180329135436.92878-4-bruce.richardson@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Bruce Richardson
Headers

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation fail Compilation issues

Commit Message

Bruce Richardson March 29, 2018, 1:54 p.m. UTC
  Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 examples/kni/meson.build             | 3 +++
 examples/l3fwd-power/meson.build     | 3 +++
 examples/tep_termination/meson.build | 3 +++
 examples/vhost/meson.build           | 3 +++
 examples/vhost_scsi/meson.build      | 3 +++
 5 files changed, 15 insertions(+)
  

Patch

diff --git a/examples/kni/meson.build b/examples/kni/meson.build
index c39aead6f..0443ab99b 100644
--- a/examples/kni/meson.build
+++ b/examples/kni/meson.build
@@ -6,6 +6,9 @@ 
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+	build = false
+endif
 deps += ['kni', 'bus_pci']
 sources = files(
 	'main.c'
diff --git a/examples/l3fwd-power/meson.build b/examples/l3fwd-power/meson.build
index 61e8daa96..f633a0f17 100644
--- a/examples/l3fwd-power/meson.build
+++ b/examples/l3fwd-power/meson.build
@@ -6,6 +6,9 @@ 
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+	build = false
+endif
 deps += ['power', 'timer', 'lpm', 'hash']
 sources = files(
 	'main.c'
diff --git a/examples/tep_termination/meson.build b/examples/tep_termination/meson.build
index 68c940aab..618a44a67 100644
--- a/examples/tep_termination/meson.build
+++ b/examples/tep_termination/meson.build
@@ -6,6 +6,9 @@ 
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+	build = false
+endif
 deps += ['hash', 'vhost']
 sources = files(
 	'main.c', 'vxlan.c', 'vxlan_setup.c'
diff --git a/examples/vhost/meson.build b/examples/vhost/meson.build
index 3e6e69047..853ecae7c 100644
--- a/examples/vhost/meson.build
+++ b/examples/vhost/meson.build
@@ -6,6 +6,9 @@ 
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+	build = false
+endif
 deps += 'vhost'
 sources = files(
 	'main.c', 'virtio_net.c'
diff --git a/examples/vhost_scsi/meson.build b/examples/vhost_scsi/meson.build
index bd78e84b3..5f92370f5 100644
--- a/examples/vhost_scsi/meson.build
+++ b/examples/vhost_scsi/meson.build
@@ -6,6 +6,9 @@ 
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+if host_machine.system() != 'linux'
+	build = false
+endif
 deps += 'vhost'
 cflags += ['-D_GNU_SOURCE','-D_FILE_OFFSET_BITS=64']
 sources = files(