From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id D90935A08 for ; Mon, 29 Dec 2014 17:20:52 +0100 (CET) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga101.fm.intel.com with ESMTP; 29 Dec 2014 08:20:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,862,1389772800"; d="scan'208";a="434645956" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by FMSMGA003.fm.intel.com with ESMTP; 29 Dec 2014 08:08:55 -0800 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id sBTGKmnL007326; Mon, 29 Dec 2014 16:20:48 GMT Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id sBTGKmen031461; Mon, 29 Dec 2014 16:20:48 GMT Received: (from smonroy@localhost) by sivswdev02.ir.intel.com with id sBTGKleU031457; Mon, 29 Dec 2014 16:20:47 GMT Date: Mon, 29 Dec 2014 16:20:47 +0000 From: Sergio Gonzalez Monroy To: Neil Horman Message-ID: <20141229162045.GA28490@sivswdev02.ir.intel.com> References: <1419109299-9603-1-git-send-email-nhorman@tuxdriver.com> <1419349913-21674-1-git-send-email-nhorman@tuxdriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1419349913-21674-1-git-send-email-nhorman@tuxdriver.com> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v3 1/4] compat: Add infrastructure to support symbol versioning 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: Mon, 29 Dec 2014 16:20:53 -0000 On Tue, Dec 23, 2014 at 10:51:50AM -0500, Neil Horman wrote: > Add initial pass header files to support symbol versioning. > > Signed-off-by: Neil Horman > CC: Thomas Monjalon > CC: "Richardson, Bruce" > CC: "Gonzalez Monroy, Sergio" > > Change Notes: > V2) > Moved ifeq to _INSTALL target > > V3) > Undo V2 changes and make librte_compat use the rte.install.mk file > instead > --- > lib/Makefile | 1 + > lib/librte_compat/Makefile | 38 +++++++++++++++++ > lib/librte_compat/rte_compat.h | 96 ++++++++++++++++++++++++++++++++++++++++++ > mk/rte.lib.mk | 4 ++ > 4 files changed, 139 insertions(+) > create mode 100644 lib/librte_compat/Makefile > create mode 100644 lib/librte_compat/rte_compat.h > Acked-by: Sergio Gonzalez Monroy