From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 85691A04B1; Wed, 23 Sep 2020 12:45:49 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1B81A1DC5D; Wed, 23 Sep 2020 12:45:37 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 014551DBE1 for ; Wed, 23 Sep 2020 12:45:25 +0200 (CEST) IronPort-SDR: tWDQjW7x2hZpiIsi0r4HbzfE+MfoMcowmSlKwfLAmCt2B3VsMThXpvGgUnAs6vvfomETxWIseq MYTRErUmezRQ== X-IronPort-AV: E=McAfee;i="6000,8403,9752"; a="148508359" X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="148508359" 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:25 -0700 IronPort-SDR: njJ5zjL25ftNNgfsLCUI2OaOViMMmyrBeRu1L2iU0GjfzY1mOL0gpG0vCXhTNV41qPG2pgRHYy qjJKs2cKBj0A== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,293,1596524400"; d="scan'208";a="412958674" Received: from silpixa00399477.ir.intel.com ([10.237.214.232]) by fmsmga001.fm.intel.com with ESMTP; 23 Sep 2020 03:45:23 -0700 From: Radu Nicolau 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 , Sean Morrissey Date: Wed, 23 Sep 2020 10:44:33 +0000 Message-Id: <20200923104433.11442-5-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 4/4] doc: remove reference to RTE_MACHINE_CPUFLAG 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" RTE_MACHINE_CPUFLAG macros are replaced with predefined compiler defines. Signed-off-by: Sean Morrissey Signed-off-by: Radu Nicolau --- doc/guides/prog_guide/writing_efficient_code.rst | 2 -- doc/guides/rel_notes/release_20_11.rst | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/guides/prog_guide/writing_efficient_code.rst b/doc/guides/prog_guide/writing_efficient_code.rst index 2639ef7bf..74f8067c7 100644 --- a/doc/guides/prog_guide/writing_efficient_code.rst +++ b/doc/guides/prog_guide/writing_efficient_code.rst @@ -273,5 +273,3 @@ main() function and checks if the current machine is suitable for running the bi Along with compiler optimizations, a set of preprocessor defines are automatically added to the build process (regardless of the compiler version). These defines correspond to the instruction sets that the target CPU should be able to support. -For example, a binary compiled for any SSE4.2-capable processor will have RTE_MACHINE_CPUFLAG_SSE4_2 defined, -thus enabling compile-time code path selection for different platforms. diff --git a/doc/guides/rel_notes/release_20_11.rst b/doc/guides/rel_notes/release_20_11.rst index c6642f5f9..03deb89de 100644 --- a/doc/guides/rel_notes/release_20_11.rst +++ b/doc/guides/rel_notes/release_20_11.rst @@ -91,6 +91,7 @@ Removed Items Also, make sure to start the actual text at the margin. ======================================================= +* Removed ``RTE_MACHINE_CPUFLAG`` macros. API Changes ----------- -- 2.17.1