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 6A8E7A2EDB for ; Mon, 30 Sep 2019 12:27:18 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 21C763237; Mon, 30 Sep 2019 12:27:17 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 4279B2BF1 for ; Mon, 30 Sep 2019 12:27:14 +0200 (CEST) X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Sep 2019 03:27:13 -0700 X-IronPort-AV: E=Sophos;i="5.64,565,1559545200"; d="scan'208";a="392025189" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.95]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Sep 2019 03:27:11 -0700 Date: Mon, 30 Sep 2019 11:27:08 +0100 From: Bruce Richardson To: Marcin Baran Cc: dev@dpdk.org, ray.kinsella@intel.com, Pawel Modrak Message-ID: <20190930102708.GA1885@bricha3-MOBL.ger.corp.intel.com> References: <20190930092139.2440-1-marcinx.baran@intel.com> <20190930092139.2440-3-marcinx.baran@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190930092139.2440-3-marcinx.baran@intel.com> User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH 3/8] buildtools: add ABI versioning check script 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" On Mon, Sep 30, 2019 at 11:21:34AM +0200, Marcin Baran wrote: > The script 'check-abi-version.sh' should be used > to check whether built libraries are versioned > with correct ABI number (provided ABI, provided > ABI+1 or EXPERIMENTAL). > > Signed-off-by: Marcin Baran > Signed-off-by: Pawel Modrak > --- > buildtools/check-abi-version.sh | 46 +++++++++++++++++++++++++++++++++ > buildtools/update_abi.sh | 41 +++++++++++++++++++++++++++++ > 2 files changed, 87 insertions(+) > create mode 100755 buildtools/check-abi-version.sh > create mode 100755 buildtools/update_abi.sh > This patch also includes an "update_abi.sh" script, which is not referred to in the log. It should probably have it's own patch and explanation. [Also, one script name uses "-" between words, the other "_", maybe standardize]