From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: [PATCH v2] config: disable RTE_NEXT_ABI by default Date: Thu, 4 Oct 2018 16:48:29 +0100 Message-ID: <20181004154829.66523-1-ferruh.yigit@intel.com> References: <20181004154306.65867-1-ferruh.yigit@intel.com> Cc: dev@dpdk.org, Ferruh Yigit , Neil Horman , Luca Boccassi , Christian Ehrhardt To: Thomas Monjalon Return-path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id C05491B49E for ; Thu, 4 Oct 2018 16:48:56 +0200 (CEST) In-Reply-To: <20181004154306.65867-1-ferruh.yigit@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Enabling RTE_NEXT_ABI means to enable APIs that break the ABI for the current release and these APIs are targeted for further release. RTE_NEXT_ABI shouldn't be enabled by default. Signed-off-by: Ferruh Yigit --- Cc: Neil Horman Cc: Thomas Monjalon Cc: Luca Boccassi Cc: Christian Ehrhardt v2: * fix typo in commit log --- config/common_base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/common_base b/config/common_base index 2e888d13b..dbd0c9ae9 100644 --- a/config/common_base +++ b/config/common_base @@ -43,7 +43,7 @@ CONFIG_RTE_BUILD_SHARED_LIB=n # # Use newest code breaking previous ABI # -CONFIG_RTE_NEXT_ABI=y +CONFIG_RTE_NEXT_ABI=n # # Major ABI to overwrite library specific LIBABIVER -- 2.17.1