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 2A0BAA04F5; Thu, 12 Dec 2019 09:27:50 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 77FF1374C; Thu, 12 Dec 2019 09:27:49 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 3FA432BD3 for ; Thu, 12 Dec 2019 09:27:46 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1576139266; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=6QWRAZHDvh1c5QUAV8duLnfW0iRQhcKbFoRBGaRj1BI=; b=KXzkMmtdslvQktYLp4jKHXZRJMEo67TLYwwOkzxemZK2sGTBWP6AgDV5WOfkB8n85MEdPM 3VZ3FHqIjI11yNKjimVBcbu9XsVgwGC6la9KGaL6WXbZ3m9eXPbEYh/CulUlCCFzfHDOX4 GEw1Rv8S1MtxM8b5w+eI9PabW4Gb8vI= Received: from mail-vs1-f70.google.com (mail-vs1-f70.google.com [209.85.217.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-355-C39ZRhFBPB6f2IrdJajjUw-1; Thu, 12 Dec 2019 03:27:45 -0500 Received: by mail-vs1-f70.google.com with SMTP id x21so122284vsx.22 for ; Thu, 12 Dec 2019 00:27:45 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=S/Kz50mQmcV3PfS6sG3EUH5jVoLVVdDbbwczubudYyg=; b=ZmVGcd2av8mJCvw190TPlLiOLCq+utZuCYwaKy0mt1bs9xtw/FokvyPTmwDcqzPpzJ f15t8eo5pYyhPb/Q79hyML5UHJG8SI/di3Qx6Go8urLLADsdbzRgyAQT/+UcKXcRW9i1 0wY0qKv/mFAa2Qn6+QTMpHjmIi/OZaQ+jxb2m1jOEXXHEX/nB8UONujOEEfcCWgrrB3k vRoVOukO1CpiaG1Jz9EPRclsDE86taIWCIHCUaLEkYFbXYF2osgIGRazwCXNfVFOBNzb t7JYekQJkJwGd351ENqcoB34SM93lpARBT8p/2/3LeBSjUlzWAMK7Nq7uSQOtZUjCaGp jEjg== X-Gm-Message-State: APjAAAX3rv8crt0DTGNLkgd4g+7l73f5/ruSHnCcrB9LnBr5mXHYYuC5 oyBFYpZfopxmHpJJBRBqXN95N60CYqUfT10h5L515PlnZhK+YZYKMnh3+VieNP476LZXCqMlFMZ 92nwhg90g+yGnGV2gOUk= X-Received: by 2002:a1f:fe4e:: with SMTP id l75mr7757675vki.18.1576139264695; Thu, 12 Dec 2019 00:27:44 -0800 (PST) X-Google-Smtp-Source: APXvYqz62Wt1t3k6kFIyx9saeiYBhC4f0I2KHG+GxJ+q5FzrAzobd2ySAZE8IsVoTDoZXUaOkOnyjpOVgeejV90qmrU= X-Received: by 2002:a1f:fe4e:: with SMTP id l75mr7757653vki.18.1576139264382; Thu, 12 Dec 2019 00:27:44 -0800 (PST) MIME-Version: 1.0 References: <20191211102642.983579-1-bruce.richardson@intel.com> <20191211151628.1512802-1-bruce.richardson@intel.com> In-Reply-To: <20191211151628.1512802-1-bruce.richardson@intel.com> From: David Marchand Date: Thu, 12 Dec 2019 09:27:33 +0100 Message-ID: To: Bruce Richardson Cc: dev , Thomas Monjalon , "Kinsella, Ray" , "Yigit, Ferruh" , Luca Boccassi X-MC-Unique: C39ZRhFBPB6f2IrdJajjUw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2] build: fix soname info for 19.11 compatiblity 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" Hello Bruce, On Wed, Dec 11, 2019 at 4:16 PM Bruce Richardson wrote: > > The soname for each stable ABI version should be just the ABI version maj= or > number without the minor number. Unfortunately both major and minor were > used causing version 20.1 to be incompatible with 20.0. > > This patch fixes the issue by switching from 2-part to 3-part ABI version > numbers so that we can keep 20.0 as soname and using the final digits to > identify the 20.x releases which are ABI compatible. This requires change= s > to both make and meson builds to handle the three-digit version and shrin= k > it to 2-digit for soname. > > Fixes: cba806e07d6f ("build: change ABI versioning to global") > > Signed-off-by: Bruce Richardson > Signed-off-by: Thomas Monjalon There is an issue with the ethtool example. INSTALL-APP server INSTALL-MAP server.map cat: /home/dmarchan/dpdk/examples/ethtool/lib/ABI_VERSION: No such file or directory CC rte_ethtool.o LD librte_ethtool.so.0. INSTALL-LIB librte_ethtool.so.0. gmake[3]: stat: /home/dmarchan/builds/i686-native-linux-gcc+shared+debug+default/examples/e= thtool/lib/i686-native-linux-gcc/lib/librte_ethtool.so.0.: Too many levels of symbolic links =3D=3D ethtool-app --=20 David Marchand