From patchwork Thu Mar 29 13:54:33 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 36660 X-Patchwork-Delegate: bruce.richardson@intel.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D5F53354D; Thu, 29 Mar 2018 15:54:54 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 8D9CC2C39 for ; Thu, 29 Mar 2018 15:54:49 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Mar 2018 06:54:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,376,1517904000"; d="scan'208";a="32471941" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga002.fm.intel.com with ESMTP; 29 Mar 2018 06:54:48 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: hemant.agrawal@nxp.com, shreyansh.jain@nxp.com, Bruce Richardson Date: Thu, 29 Mar 2018 14:54:33 +0100 Message-Id: <20180329135436.92878-4-bruce.richardson@intel.com> X-Mailer: git-send-email 2.14.3 In-Reply-To: <20180329135436.92878-1-bruce.richardson@intel.com> References: <20180329135436.92878-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 3/6] examples: disable unsupported examples on BSD 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" Signed-off-by: Bruce Richardson --- 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(+) 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(