From mboxrd@z Thu Jan 1 00:00:00 1970 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) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490796273; x=1522332273; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=EQ9uXc+AZTOhKdJWRh0q0qngAZdbQ9zh+V+EPvbrQsw=; b=GI9teBbPSUsDmEb+OqkL7QG7MO2MMjWmjxDnsqEd/mwg8381imOfcjZY 3Sekksw0kjifAvgTYtykJxTnZFws3g==; Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Mar 2017 07:04:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,241,1486454400"; d="scan'208";a="82297721" Received: from sivswdev01.ir.intel.com ([10.237.217.45]) by fmsmga006.fm.intel.com with ESMTP; 29 Mar 2017 07:04:31 -0700 From: Bruce Richardson To: thomas.monjalon@6wind.com Cc: pablo.de.lara.guarch@intel.com, dev@dpdk.org, Bruce Richardson Date: Wed, 29 Mar 2017 15:04:16 +0100 Message-Id: <20170329140419.27149-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.8.4 In-Reply-To: <20170329140419.27149-1-bruce.richardson@intel.com> References: <20170329140419.27149-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 1/4] examples: enable performance-thread in examples build 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: Wed, 29 Mar 2017 14:04:33 -0000 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