From patchwork Wed Apr 24 15:11:59 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Huang, Peng" X-Patchwork-Id: 53039 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D0B481B4E3; Wed, 24 Apr 2019 10:31:40 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 28A761B4AB; Wed, 24 Apr 2019 10:31:38 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Apr 2019 01:31:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,389,1549958400"; d="scan'208";a="318497967" Received: from worker1.sh.intel.com ([10.67.119.186]) by orsmga005.jf.intel.com with ESMTP; 24 Apr 2019 01:31:36 -0700 From: Peng Huang To: nhorman@tuxdriver.com, qi.z.zhang@intel.com, qiming.yang@intel.com, wenzhuo.lu@intel.com Cc: dev@dpdk.org, peng.huang@intel.com, stable@dpdk.org Date: Wed, 24 Apr 2019 15:11:59 +0000 Message-Id: <1556118719-74460-1-git-send-email-peng.huang@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [DPDK] devtools: change for ABI back-compatibility checking 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" The new default-taget "linux" is introduced in v19.05-rc1 but not exist in before release such as v19.02 which have default-target "linuxapp", there is no compatibility report when run validate-abi.sh to check ABI compatibility between v19.05-rc1 and v19.02, changed default-target from "linux" to "linuxapp" in validate-abi.sh Fixes: 218c4e68c1d9 ("mk: use linux and freebsd in config names") Cc: stable@dpdk.org Signed-off-by: Peng Huang Acked-by: Neil Horman Acked-by: Bruce Richardson --- devtools/validate-abi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/validate-abi.sh b/devtools/validate-abi.sh index 54df2e4..138436d 100755 --- a/devtools/validate-abi.sh +++ b/devtools/validate-abi.sh @@ -9,7 +9,7 @@ set -e abicheck=abi-compliance-checker abidump=abi-dumper default_dst=abi-check -default_target=x86_64-native-linux-gcc +default_target=x86_64-native-linuxapp-gcc # trap on error err_report() {