From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 2435DA04B1;
	Wed, 23 Sep 2020 12:45:42 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id C99D81DBD1;
	Wed, 23 Sep 2020 12:45:35 +0200 (CEST)
Received: from mga02.intel.com (mga02.intel.com [134.134.136.20])
 by dpdk.org (Postfix) with ESMTP id 753241DBA7
 for <dev@dpdk.org>; Wed, 23 Sep 2020 12:45:23 +0200 (CEST)
IronPort-SDR: T+ORTCwaoM8m7oUFowsIrnRu2qAWFSK64JSh6LKhx9Od0SxpA96mn7hK/OGoE4m7OJrNZ6CkxH
 k+74TidesnTQ==
X-IronPort-AV: E=McAfee;i="6000,8403,9752"; a="148508353"
X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="148508353"
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from fmsmga001.fm.intel.com ([10.253.24.23])
 by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 23 Sep 2020 03:45:23 -0700
IronPort-SDR: qhqPpaV3TgG2u57htRtp/JVLfWAq3QZgOwCGYrPPG9wDDd6g8Bt5InhAcRCahiKfCbgWiyVGO9
 UqM1LrDQDyiQ==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="412958669"
Received: from silpixa00399477.ir.intel.com ([10.237.214.232])
 by fmsmga001.fm.intel.com with ESMTP; 23 Sep 2020 03:45:20 -0700
From: Radu Nicolau <radu.nicolau@intel.com>
To: dev@dpdk.org
Cc: thomas@monjalon.net, david.marchand@redhat.com, viktorin@rehivetech.com,
 ruifeng.wang@arm.com, jerinj@marvell.com, drc@linux.vnet.ibm.com,
 bruce.richardson@intel.com, konstantin.ananyev@intel.com,
 Radu Nicolau <radu.nicolau@intel.com>,
 Sean Morrissey <sean.morrissey@intel.com>
Date: Wed, 23 Sep 2020 10:44:32 +0000
Message-Id: <20200923104433.11442-4-radu.nicolau@intel.com>
X-Mailer: git-send-email 2.17.1
In-Reply-To: <20200923104433.11442-1-radu.nicolau@intel.com>
References: <20200902104343.31774-2-radu.nicolau@intel.com>
 <20200923104433.11442-1-radu.nicolau@intel.com>
Subject: [dpdk-dev] [PATCH v2 3/4] ppc: change cpuflag macros to compiler
	macros
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

Replace use of RTE_MACHINE_CPUFLAG macros with regular compiler
macros, which are more complete than those provided by DPDK, and as such
it allows new instruction sets to be leveraged without having to do
extra work to set them up in DPDK.

Signed-off-by: Sean Morrissey <sean.morrissey@intel.com>
Signed-off-by: Radu Nicolau <radu.nicolau@intel.com>
---
 config/ppc/meson.build | 2 --
 1 file changed, 2 deletions(-)

diff --git a/config/ppc/meson.build b/config/ppc/meson.build
index aa7d73d11..0d8da87e6 100644
--- a/config/ppc/meson.build
+++ b/config/ppc/meson.build
@@ -21,5 +21,3 @@ endif
 dpdk_conf.set('RTE_MAX_LCORE', 1536)
 dpdk_conf.set('RTE_MAX_NUMA_NODES', 32)
 dpdk_conf.set('RTE_CACHE_LINE_SIZE', 128)
-dpdk_conf.set('RTE_MACHINE_CPUFLAG_ALTIVEC', 1)
-dpdk_conf.set('RTE_MACHINE_CPUFLAG_VSX', 1)
-- 
2.17.1