From patchwork Wed May 18 15:03:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jerin Jacob Kollanukkaran X-Patchwork-Id: 111323 X-Patchwork-Delegate: jerinj@marvell.com 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 EA651A0503; Wed, 18 May 2022 17:04:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C36B640156; Wed, 18 May 2022 17:04:18 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 8C285400D6 for ; Wed, 18 May 2022 17:04:17 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.17.1.5/8.17.1.5) with ESMTP id 24IBrRuZ010680; Wed, 18 May 2022 08:04:09 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=fiP1FyRqWzMyO0jOH66hukyhA5HxWkz02+c1PkLMAfE=; b=H5uX8o9zX63zvVdPDUh4jOEPX2AuFvh01R/z2Nea/23jD7q/0qD/cn8L6i47B9Vot25R TxonOwt9zPh7JlR4i220zFEnhYpCNzLUiK2xBSLXLN88jSXdignzK1kldDBrox//9sno KXG/OnLEjZzbpoNp6SgegW/NJBHyTdjSoQzrWv0Udx5KQ+uRHxqkJXW5f92hAiW1l4e8 HMraW6xkIRKYhqX2FTpvqUZyGWAULqoYdtQEFuCP/+hVuzDzUEPsHobpTbbMtWI+yo9C DxtkbgHjhCOLvkNlgqFAICQu/Hag5B5nc9WU6Bg01roGgm/7dYa35o5jANZPyoubxnRf Qw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 3g50as0r4p-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Wed, 18 May 2022 08:04:08 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Wed, 18 May 2022 08:04:06 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Wed, 18 May 2022 08:04:06 -0700 Received: from jerin-lab.marvell.com (jerin-lab.marvell.com [10.28.34.14]) by maili.marvell.com (Postfix) with ESMTP id 6DFBB3F70C8; Wed, 18 May 2022 08:04:03 -0700 (PDT) From: To: , Nithin Dabilpuram , Kiran Kumar K , Sunil Kumar Kori , Satha Rao CC: , , , , Jerin Jacob Subject: [dpdk-dev] [PATCH] doc: update cnxk native compilation steps Date: Wed, 18 May 2022 20:33:22 +0530 Message-ID: <20220518150322.3013569-1-jerinj@marvell.com> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: 6cjTzty8gCcOOvXlF7S8FMfV9Y6SPPIt X-Proofpoint-GUID: 6cjTzty8gCcOOvXlF7S8FMfV9Y6SPPIt X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.874,Hydra:6.0.486,FMLib:17.11.64.514 definitions=2022-05-18_05,2022-05-17_02,2022-02-23_01 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 From: Jerin Jacob Update cnxk platform documentation to use -Dplatform meson option for native builds. Signed-off-by: Jerin Jacob Reviewed-by: Ruifeng Wang --- doc/guides/platform/cnxk.rst | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/guides/platform/cnxk.rst b/doc/guides/platform/cnxk.rst index 3dee725ac5..03190bdb14 100644 --- a/doc/guides/platform/cnxk.rst +++ b/doc/guides/platform/cnxk.rst @@ -578,9 +578,20 @@ an x86 based platform. Native Compilation ~~~~~~~~~~~~~~~~~~ +Refer to :doc:`../linux_gsg/build_dpdk` for generic native builds. + +CN9K: + +.. code-block:: console + + meson -Dplatform=cn9k build + ninja -C build + +CN10K: + .. code-block:: console - meson build + meson -Dplatform=cn10k build ninja -C build Cross Compilation