From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id A945AA05D3 for ; Wed, 24 Apr 2019 14:09:40 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 283611B431; Wed, 24 Apr 2019 14:09:39 +0200 (CEST) Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 721F91B3A5; Wed, 24 Apr 2019 14:09:37 +0200 (CEST) Received: from cpe-2606-a000-111b-405a-0-0-0-188a.dyn6.twc.com ([2606:a000:111b:405a::188a] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1hJGiJ-0003qs-NO; Wed, 24 Apr 2019 08:09:31 -0400 Date: Wed, 24 Apr 2019 08:08:56 -0400 From: Neil Horman To: Peng Huang Cc: qi.z.zhang@intel.com, qiming.yang@intel.com, wenzhuo.lu@intel.com, dev@dpdk.org, stable@dpdk.org Message-ID: <20190424120856.GC560@hmswarspite.think-freely.org> References: <1556118719-74460-1-git-send-email-peng.huang@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Disposition: inline In-Reply-To: <1556118719-74460-1-git-send-email-peng.huang@intel.com> User-Agent: Mutt/1.11.3 (2019-02-01) X-Spam-Score: -2.9 (--) X-Spam-Status: No Subject: Re: [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" Message-ID: <20190424120856.lHV6qEJhlOU2UQR7gFLjJjQY_yIzdWjY8o4JMOhBloA@z> On Wed, Apr 24, 2019 at 03:11:59PM +0000, Peng Huang wrote: > 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 > --- > 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() { > -- > 1.8.3.1 > > Acked-by: Neil Horman