From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 30DA11BA07 for ; Tue, 10 Apr 2018 00:34:17 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9B50220FA8; Mon, 9 Apr 2018 18:34:16 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 09 Apr 2018 18:34:16 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=8bw4glN3mCN4c9458uv/A+S2Bc riznTN3geRaBdzRyk=; b=MVF+87kzoH3jtI85xMdzCVQ7q/bAHtIiczEqGfzdMa FyMbjVYYc3i6sDB/HgIBEu5ZMl3XgsgJVFGNzE79mliH4I0cN7CM1AjKUM54UyLl 8DeA45dCSjSvcV7WGmKTx5xlIRd/qWAUsdayLRlkkH9tyYMnnp2bkrbMh0KQizQT k= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=8bw4gl N3mCN4c9458uv/A+S2BcriznTN3geRaBdzRyk=; b=JjwO/Az4efHVPnUa4WWTfc ktLM9WiITYiH8Pr97M4ZMhf+fwItS8oIM0pdJuZL7q8Db6+f09txIuF/ZQHZicWe pZSbpoHlx0fylN6Hc/7wtLnlAZgYK1pLWqubld5RvXCblgiqsJCwxtR3oCE89Xn/ cyDol0KJtR4t5oZu/Gd0D74gdYVhbwjJh3H1rWzNlx0RH7A/HbpbGfBW2X5lJJFV FrPu+3PC+1O9sYO9r1zcX0JVgWXSakaHr3yJ50l94Gva2B2yunkw9k0COc0Fuy6r lIQK9A3gi1Pag27Eeps9Fm7EnqPjV1IcwFSfsfiGO/qR6xb9kHKXXC0JWSGfJu5g == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id F2BC1E4449; Mon, 9 Apr 2018 18:34:15 -0400 (EDT) From: Thomas Monjalon To: Jasvinder Singh Cc: dev@dpdk.org, cristian.dumitrescu@intel.com Date: Tue, 10 Apr 2018 00:34:14 +0200 Message-ID: <1876749.P1BhTyUkUM@xps> In-Reply-To: <20180409120632.38567-1-jasvinder.singh@intel.com> References: <20180409120632.38567-1-jasvinder.singh@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] examples/ip_pipeline: fix freebsd build error 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: Mon, 09 Apr 2018 22:34:17 -0000 09/04/2018 14:06, Jasvinder Singh: > IP_Pipeline app is not supported in FreeBSD environment. Therefore, > skip it while building the sample apps on FreeBSD. > > Fixes: 4bbf8e30aa5e ("examples/ip_pipeline: add CLI interface") > Fixes: 2f74ae28e23f ("examples/ip_pipeline: add tap object") > > Signed-off-by: Jasvinder Singh > --- > --- a/examples/ip_pipeline/Makefile > +++ b/examples/ip_pipeline/Makefile > +ifneq ($(CONFIG_RTE_EXEC_ENV),"linuxapp") > +$(error This application can only operate in a linuxapp environment, \ > +please change the definition of the RTE_TARGET environment variable) > +endif It is not skipping the example, just throwing an error (which is needed). You should add a test in examples/Makefile to really skip it.