From patchwork Tue Feb 13 14:52:18 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cristian Dumitrescu X-Patchwork-Id: 136645 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B913B43B07; Tue, 13 Feb 2024 15:52:22 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2EBD4402D8; Tue, 13 Feb 2024 15:52:22 +0100 (CET) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.20]) by mails.dpdk.org (Postfix) with ESMTP id 2A75C40294; Tue, 13 Feb 2024 15:52:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1707835941; x=1739371941; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=5pV5rojsXfL2XWzbi4vsm5/QE5pJZ2ptbJgW2v23o0k=; b=hBEDsF4LacS5Xjj+vN1UVYn6yJAr/IVW4zBIJ2w6z2Wh7ctC/+RDbsoh QTTqfEygLjji3f0njPAvHMymXgtatZQDjv6oPRCNLf+pos1hlijUbzMWu SH41VrQKvCNBXWUyuYjUsaiBoaz6/IeYr/rLpXu1/AAfJ4Xlw0zJ7VzNC i2BNxHHyuB5ToRmEi/eUcSHdz1K5cP1feF/3rLhotGb+q/Qt6jR4LhXGe LBMh4sHMS63bxFguVecISzdhXAZL/mWWbmDOmvZJWWGmJ2hmfTwnVc7d7 bRJwpyZHuc341FSVSg9sZfbu1irkqYpnv1PlggjY6cmM9EcBASjx6TvFu g==; X-IronPort-AV: E=McAfee;i="6600,9927,10982"; a="1718881" X-IronPort-AV: E=Sophos;i="6.06,157,1705392000"; d="scan'208";a="1718881" Received: from orviesa006.jf.intel.com ([10.64.159.146]) by orvoesa112.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Feb 2024 06:52:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.06,157,1705392000"; d="scan'208";a="3256020" Received: from silpixa00400573.ir.intel.com (HELO silpixa00400573.ger.corp.intel.com) ([10.237.223.184]) by orviesa006.jf.intel.com with ESMTP; 13 Feb 2024 06:52:20 -0800 From: Cristian Dumitrescu To: dev@dpdk.org Cc: stable@dpdk.org Subject: [PATCH] examples/pipeline: fix include path for rte_log.h Date: Tue, 13 Feb 2024 14:52:18 +0000 Message-Id: <20240213145218.1532323-1-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org When rte_log.h was moved to a new directory, the include path was not updated for the generated C code produced by the pipeline library, which results in build failure for this code. Fixes: 09ce41310930 ("log: separate logging functions out of EAL") Cc: stable@dpdk.org Signed-off-by: Cristian Dumitrescu --- examples/pipeline/cli.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/pipeline/cli.c b/examples/pipeline/cli.c index 2ae6cc579f..afb143c01f 100644 --- a/examples/pipeline/cli.c +++ b/examples/pipeline/cli.c @@ -714,6 +714,7 @@ cmd_pipeline_libbuild(char **tokens, "-I %s/lib/eal/include " "-I %s/lib/eal/x86/include " "-I %s/lib/eal/include/generic " + "-I %s/lib/log " "-I %s/lib/meter " "-I %s/lib/port " "-I %s/lib/table " @@ -738,6 +739,7 @@ cmd_pipeline_libbuild(char **tokens, install_dir, install_dir, install_dir, + install_dir, log_file, obj_file, lib_file,