From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 45192C433E5 for ; Tue, 21 Jul 2020 13:39:45 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 0B2E420792 for ; Tue, 21 Jul 2020 13:39:44 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0B2E420792 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 53F841BFEB; Tue, 21 Jul 2020 15:39:44 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 8815F1BFE7 for ; Tue, 21 Jul 2020 15:39:42 +0200 (CEST) IronPort-SDR: YUu6NxMfZ2bdqnpSvy0Q/BDmXucwC2jIrOz9cx6UR4NE6hpGU8HV02jfkVxc7sZfWqhaUaBwS2 rsH8xQYiEEMg== X-IronPort-AV: E=McAfee;i="6000,8403,9688"; a="150110419" X-IronPort-AV: E=Sophos;i="5.75,379,1589266800"; d="scan'208";a="150110419" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Jul 2020 06:39:41 -0700 IronPort-SDR: LYPH3hkXXuwhMDUVnelSUc2N/GmG7WKISeowfToRy15b/ufkC00Odm9/rPcXPuYU9aPtNbDzcO ZrRCGDavUqdg== X-IronPort-AV: E=Sophos;i="5.75,379,1589266800"; d="scan'208";a="488085936" Received: from bricha3-mobl.ger.corp.intel.com ([10.252.9.114]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 21 Jul 2020 06:39:38 -0700 Date: Tue, 21 Jul 2020 14:39:35 +0100 From: Bruce Richardson To: Dmitry Kozlyuk Cc: dev@dpdk.org, Neil Horman , Thomas Monjalon , robin.jarry@6wind.com, Jie Zhou , Tal Shnaiderman , John McNamara , Marko Kovacevic Message-ID: <20200721133935.GC735@bricha3-MOBL.ger.corp.intel.com> References: <20200708005355.7102-1-dmitry.kozliuk@gmail.com> <20200708212335.25338-1-dmitry.kozliuk@gmail.com> <20200708212335.25338-4-dmitry.kozliuk@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200708212335.25338-4-dmitry.kozliuk@gmail.com> Subject: Re: [dpdk-dev] [PATCH v4 3/4] doc/linux_gsg: require pyelftools for pmdinfogen 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" On Thu, Jul 09, 2020 at 12:23:34AM +0300, Dmitry Kozlyuk wrote: > The package is available on all major distributions. > FreeBSD has no system requirements section in its GSG, > Windows currently neither uses pmdinfogen not is supported by it. > > Signed-off-by: Dmitry Kozlyuk > --- > doc/guides/linux_gsg/sys_reqs.rst | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst > index a124656bc..ef2037ca7 100644 > --- a/doc/guides/linux_gsg/sys_reqs.rst > +++ b/doc/guides/linux_gsg/sys_reqs.rst > @@ -56,6 +56,12 @@ Compilation of the DPDK > * If the packaged version is below the minimum version, the latest versions > can be installed from Python's "pip" repository: ``pip3 install meson ninja`` > > +* ``pyelftools`` (version 0.22+) > + > + * For RHEL/Fedora systems it can be installed using ``dnf install python-pyelftools`` > + > + * For Ubuntu/Debian it can be installed using ``apt install python3-pyelftools`` > + If you want for completeness you can add: * For FreeBSD it can be installed using ``pkg install py37-pyelftools``, where py37 refers to the python version in use. > * Library for handling NUMA (Non Uniform Memory Access). > > * ``numactl-devel`` in RHEL/Fedora; > -- > 2.25.4 >