From patchwork Mon Oct 26 21:57:55 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 82239 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E4C09A04DD; Mon, 26 Oct 2020 22:58:01 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 43DA21E2B; Mon, 26 Oct 2020 22:58:00 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id B5AB61D9E for ; Mon, 26 Oct 2020 22:57:57 +0100 (CET) IronPort-SDR: fKbpMLS1c8guus0Xwcki/K6niSSHf8aj3T4MOLk8RqwbzrXaAprAqIGrRS3CLHh7cE8Lwqw4mg OIY1ghybINyw== X-IronPort-AV: E=McAfee;i="6000,8403,9786"; a="185724267" X-IronPort-AV: E=Sophos;i="5.77,421,1596524400"; d="scan'208";a="185724267" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2020 14:57:56 -0700 IronPort-SDR: IFj5yyF5eovJHmLwCUUxfzcnUbXg6sg1ZJ2Hh1lnsC6iHKbmHcvP4KKDROykw0TEoQP9NhCaPx DkWOePImWP3g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,421,1596524400"; d="scan'208";a="468073691" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.223.107]) by orsmga004.jf.intel.com with ESMTP; 26 Oct 2020 14:57:55 -0700 From: Cristian Dumitrescu To: dev@dpdk.org Date: Mon, 26 Oct 2020 21:57:55 +0000 Message-Id: <20201026215755.9133-1-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH] examples/ip_pipeline: fix build with external makefile 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" Fix build with external makefile. Fixes: fbc74e66334f ("examples/ip_pipeline: remove infra code") Signed-off-by: Cristian Dumitrescu --- examples/ip_pipeline/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ip_pipeline/Makefile b/examples/ip_pipeline/Makefile index d25e39a46..4b391973c 100644 --- a/examples/ip_pipeline/Makefile +++ b/examples/ip_pipeline/Makefile @@ -39,7 +39,7 @@ CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk) LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk) LDFLAGS_STATIC = $(shell $(PKGCONF) --static --libs libdpdk) -CFLAGS += -I. +CFLAGS += -I. -DALLOW_EXPERIMENTAL_API -D_GNU_SOURCE OBJS := $(patsubst %.c,build/%.o,$(SRCS-y))