From patchwork Tue Jul 3 22:14:46 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Ga=C3=ABtan_Rivet?= X-Patchwork-Id: 42172 X-Patchwork-Delegate: thomas@monjalon.net 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 84BFE1BE5C; Wed, 4 Jul 2018 00:15:41 +0200 (CEST) Received: from mail-wr0-f177.google.com (mail-wr0-f177.google.com [209.85.128.177]) by dpdk.org (Postfix) with ESMTP id 4A44E1BE3C for ; Wed, 4 Jul 2018 00:15:38 +0200 (CEST) Received: by mail-wr0-f177.google.com with SMTP id t6-v6so3387555wrn.7 for ; Tue, 03 Jul 2018 15:15:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=Sxhmophs5PVz/xsld34wfEMmtmHs37kn7M6i/VqwFqg=; b=BbR/iwA4UNfPYxm2elBYAiuZ3MWENKUZHonnf9vhRyERV09trM7QkvFJYeS8h5dCPh QciS82bwNXxc0vdh0KSiLAI/CHg11mmi8uL9DOpZ8mf01XKIAtCtUEoX7OCum6wSsWUl rbwXNw6MOSCRd6uEBMmYzgNHPTRFb1Y3v0by5SXB9EIjcFOw7KFm0iofLwaw6RTH4FAw DD4bRVW858QuHQ8mAn/N7VNtFn8jzEv77qUGvd3vO1+9HdAFKWCzY4dH9cysMG3TkEGV RWwnNZCqiNWOX2m5QEZ7A1W7BwA+zS4SQ44KZ6mhNXHVyzxhof+hfCU5XOXLlvZgHPcn 4MEA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:in-reply-to:references; bh=Sxhmophs5PVz/xsld34wfEMmtmHs37kn7M6i/VqwFqg=; b=MJZCDLEDVO4mOLuZxA431oD41M0Y6L8if7UGQYQJpR4MZsDSU/kEQ1XDW43xUkvEtw umJgY8K+YPEdvwPDx3cVeORjTfcpbC/1YEUx9EMr5yV6WQk0p0sXK2VEk5j1WZXYWN+2 SaTs0SI1U5pgX7bNCU9hYS5zsGfCzT/iRXiruZ8J4VeKzsuGDclYM3De3LsB9dPyLLDL 1OCqwmulho4s2PJIWKyp9eVo+uO9F39oTHf1MCr0J/2ay4fuzAbMUnBSGndN5VYPEzxz mIvhQjtGJr8EX6w6M+d1bio7oM1G5+yVyZcEUepgyiPziWl8duzkLrjPWHTCFNNpW4+V xu4A== X-Gm-Message-State: APt69E03hit57Am5XtSdE724c26JpQW/6cmk+pyP0ZX4cMbY1y89Do/N nkTjrCOpxeJNCmJd1RIIbRwwbnud X-Google-Smtp-Source: AAOMgpeB2pRiZQ+laIBaZn00G7jOxMrOCi9QOjhLhPDxcgJYyqRZSFma/O4vwrZk0+uCf49AQwCJIg== X-Received: by 2002:adf:e6d0:: with SMTP id y16-v6mr25289658wrm.35.1530656137594; Tue, 03 Jul 2018 15:15:37 -0700 (PDT) Received: from bidouze.dev.6wind.com. (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id i190-v6sm3771084wmd.33.2018.07.03.15.15.36 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 03 Jul 2018 15:15:36 -0700 (PDT) From: Gaetan Rivet To: dev@dpdk.org Cc: Gaetan Rivet Date: Wed, 4 Jul 2018 00:14:46 +0200 Message-Id: <154ef8a16c3634ca4c435ac9ea037ff5fcac7c70.1530655929.git.gaetan.rivet@6wind.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: References: In-Reply-To: References: Subject: [dpdk-dev] [PATCH v9 03/27] kvargs: build before EAL 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: Gaetan Rivet --- lib/Makefile | 3 +-- lib/librte_kvargs/Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index d82462ba2..e8e903c8f 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -4,6 +4,7 @@ include $(RTE_SDK)/mk/rte.vars.mk DIRS-y += librte_compat +DIRS-$(CONFIG_RTE_LIBRTE_KVARGS) += librte_kvargs DIRS-$(CONFIG_RTE_LIBRTE_EAL) += librte_eal DIRS-$(CONFIG_RTE_LIBRTE_PCI) += librte_pci DEPDIRS-librte_pci := librte_eal @@ -76,8 +77,6 @@ DEPDIRS-librte_flow_classify := librte_net librte_table librte_acl DIRS-$(CONFIG_RTE_LIBRTE_SCHED) += librte_sched DEPDIRS-librte_sched := librte_eal librte_mempool librte_mbuf librte_net DEPDIRS-librte_sched += librte_timer -DIRS-$(CONFIG_RTE_LIBRTE_KVARGS) += librte_kvargs -DEPDIRS-librte_kvargs := librte_eal DIRS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR) += librte_distributor DEPDIRS-librte_distributor := librte_eal librte_mbuf librte_ethdev DIRS-$(CONFIG_RTE_LIBRTE_PORT) += librte_port diff --git a/lib/librte_kvargs/Makefile b/lib/librte_kvargs/Makefile index 39d5ac33d..875939547 100644 --- a/lib/librte_kvargs/Makefile +++ b/lib/librte_kvargs/Makefile @@ -7,7 +7,7 @@ include $(RTE_SDK)/mk/rte.vars.mk LIB = librte_kvargs.a CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -O3 -LDLIBS += -lrte_eal +CFLAGS += -I$(RTE_SDK)/lib/librte_eal/common/include EXPORT_MAP := rte_kvargs_version.map