From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ferruh Yigit Subject: [PATCH] config: disable RTE_NEXT_ABI by default Date: Thu, 4 Oct 2018 16:43:06 +0100 Message-ID: <20181004154306.65867-1-ferruh.yigit@intel.com> References: <20180307174422.118291-1-ferruh.yigit@intel.com> Cc: dev@dpdk.org, Ferruh Yigit , Neil Horman , Luca Boccassi , Christian Ehrhardt To: Thomas Monjalon Return-path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 8D14E1B4F5 for ; Thu, 4 Oct 2018 16:43:29 +0200 (CEST) In-Reply-To: <20180307174422.118291-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 targetted 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 --- 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