From patchwork Thu Jul 22 09:06:51 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shijith Thotton X-Patchwork-Id: 96196 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 B9615A0C4E; Thu, 22 Jul 2021 11:07:28 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 57E2E4014D; Thu, 22 Jul 2021 11:07:28 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id AB8FD40040 for ; Thu, 22 Jul 2021 11:07:26 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 16M91Ehu001552; Thu, 22 Jul 2021 02:07:24 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=0uXshYwl1IJfP1aqlBcI+cO0QhAfpZsu3X43OhKEBiY=; b=LtgaP+uVT9DIH5Ca8lr86Ez4Eipw3GThzkhHi2QwkcEKX6PWMoPIrxdDsRk+hlQiho8Z M1tmyDOStMe5lXD5QWtQ5/DxRIaT5WWk9L6rtfBMjkNaqSqECZ/9Fm6+yGPVY1WvCitR aR4UW+3JmPDD4T++7yx6r18LrrBf+fv/vKWB7epLq0W8E+xHUTWVAw5N5+X3hxawVEmK e8hLBa3tf5TCJiOekISG3US48YeJYVO+61OUIhZOQHyhnRTmNziIjUwKRX2PNo613+A7 3/0RDlTjQp/0qe37C+uXXoF7b23Zo4zHSxCbsnmhYAjmSvpFst4UkE9i2i3e7T+DDt0Z Xw== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com with ESMTP id 39xx0qsgtr-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 22 Jul 2021 02:07:24 -0700 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Thu, 22 Jul 2021 02:07:21 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Thu, 22 Jul 2021 02:07:21 -0700 Received: from localhost.localdomain (unknown [10.28.34.29]) by maili.marvell.com (Postfix) with ESMTP id DD3B23F706B; Thu, 22 Jul 2021 02:07:17 -0700 (PDT) From: Shijith Thotton To: , CC: , , , , , , , , , , , Date: Thu, 22 Jul 2021 14:36:51 +0530 Message-ID: <20210722090651.2598075-1-sthotton@marvell.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 X-Proofpoint-GUID: dDTWZLxuPyNIrF8uTPmq-p_uBXV6Qj4a X-Proofpoint-ORIG-GUID: dDTWZLxuPyNIrF8uTPmq-p_uBXV6Qj4a X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-07-22_04:2021-07-22, 2021-07-22 signatures=0 Subject: [dpdk-dev] [PATCH] crypto/octeontx: enable build on non Linux OS 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 Sender: "dev" Enabled build of Octeontx crypto PMD on non linux OS. Other Octeontx PMDs are enabled already. This is to avoid ABI test failure on an OS once we add dependency between a driver which is built to another which is not. Signed-off-by: Shijith Thotton Reported-by: David Marchand Acked-by: Akhil Goyal --- drivers/crypto/octeontx/meson.build | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/crypto/octeontx/meson.build b/drivers/crypto/octeontx/meson.build index 3ae6729e8f..244b16230e 100644 --- a/drivers/crypto/octeontx/meson.build +++ b/drivers/crypto/octeontx/meson.build @@ -1,9 +1,5 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright(c) 2018 Cavium, Inc -if not is_linux - build = false - reason = 'only supported on Linux' -endif deps += ['bus_pci'] deps += ['bus_vdev']