From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id A1DC737A6 for ; Thu, 3 Dec 2015 12:24:44 +0100 (CET) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 03 Dec 2015 03:24:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,378,1444719600"; d="scan'208";a="853035511" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 03 Dec 2015 03:24:43 -0800 Received: from sivlogin002.ir.intel.com (sivlogin002.ir.intel.com [10.237.217.37]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id tB3BOfZM003730; Thu, 3 Dec 2015 11:24:41 GMT Received: from sivlogin002.ir.intel.com (localhost [127.0.0.1]) by sivlogin002.ir.intel.com with ESMTP id tB3BOfWt016380; Thu, 3 Dec 2015 11:24:41 GMT Received: (from fyigit@localhost) by sivlogin002.ir.intel.com with œ id tB3BOfD3016376; Thu, 3 Dec 2015 11:24:41 GMT X-Authentication-Warning: sivlogin002.ir.intel.com: fyigit set sender to ferruh.yigit@intel.com using -f Date: Thu, 3 Dec 2015 11:24:41 +0000 From: Ferruh Yigit To: Thomas Monjalon Message-ID: <20151203112441.GA15978@sivlogin002.ir.intel.com> Mail-Followup-To: Thomas Monjalon , dev@dpdk.org References: <20151203015919.GA23772@sivlogin002.ir.intel.com> <1449108909-29421-1-git-send-email-ferruh.yigit@intel.com> <17459798.JpEqoIGKUu@xps13> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <17459798.JpEqoIGKUu@xps13> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3] mk: fix compile error and ABI versioning for combined shared library X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 11:24:45 -0000 On Thu, Dec 03, 2015 at 03:22:39AM +0100, Thomas Monjalon wrote: > 2015-12-03 02:15, Ferruh Yigit: > > +ifeq ($(COMBINED_BUILD),1) > > include $(RTE_SDK)/mk/rte.sharelib.mk > > +endif > > I still don't understand what was the issue with this include but it > seems not related to versioning. > Please condider a separate patch with a detailed explanation of the bug. > Indeed this is related to the using versioning macros VERSION_SYMBOL, BIND_DEFAULT_SYMBOL But let me try to fix this in different way > [...] > > +FILES=$(find $RTE_SDK -name "*_version.map") > > No, we can have several build directories in RTE_SDK. > "grep -v" was to remove build output .map files, not searching for _version.map, so it should be OK but let me narrow search path to lib and drivers folders to be safe Thanks, ferruh