From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH 1/4] examples: enable performance-thread in examples build Date: Wed, 29 Mar 2017 15:04:16 +0100 Message-ID: <20170329140419.27149-2-bruce.richardson@intel.com> References: <20170329140419.27149-1-bruce.richardson@intel.com> Cc: pablo.de.lara.guarch@intel.com, dev@dpdk.org, Bruce Richardson To: thomas.monjalon@6wind.com Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 880BAF937 for ; Wed, 29 Mar 2017 16:04:33 +0200 (CEST) In-Reply-To: <20170329140419.27149-1-bruce.richardson@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The performance-thread example was not build by default in the make examples build target. It will compile ok for x86_64 targets so add it to the examples makefile list for that platform. Signed-off-by: Bruce Richardson --- examples/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/Makefile b/examples/Makefile index da2bfdd..49b0703 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -78,6 +78,9 @@ DIRS-$(CONFIG_RTE_LIBRTE_LPM) += load_balancer DIRS-y += multi_process DIRS-y += netmap_compat/bridge DIRS-$(CONFIG_RTE_LIBRTE_REORDER) += packet_ordering +ifeq ($(CONFIG_RTE_ARCH_X86_64),y) +DIRS-y += performance-thread +endif DIRS-$(CONFIG_RTE_LIBRTE_IEEE1588) += ptpclient DIRS-$(CONFIG_RTE_LIBRTE_METER) += qos_meter DIRS-$(CONFIG_RTE_LIBRTE_SCHED) += qos_sched -- 2.9.3