From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 47B7B5A84 for ; Mon, 16 Mar 2015 23:43:10 +0100 (CET) Received: from [2001:470:8:a08:215:ff:fecc:4872] (helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YXdiw-0004gs-Lc; Mon, 16 Mar 2015 18:43:07 -0400 Date: Mon, 16 Mar 2015 18:42:59 -0400 From: Neil Horman To: Stephen Hemminger Message-ID: <20150316224259.GA28909@neilslaptop.think-freely.org> References: <1426194348-4406-1-git-send-email-syuu@cloudius-systems.com> <1426194348-4406-6-git-send-email-syuu@cloudius-systems.com> <20150315120122.GA6662@neilslaptop.think-freely.org> <20150316132153.67a09fac@urahara> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150316132153.67a09fac@urahara> User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [RFC PATCH 5/7] add OSv support 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, 16 Mar 2015 22:43:10 -0000 On Mon, Mar 16, 2015 at 01:21:53PM -0700, Stephen Hemminger wrote: > On Sun, 15 Mar 2015 08:01:22 -0400 > Neil Horman wrote: > > > On Fri, Mar 13, 2015 at 06:05:46AM +0900, Takuya ASADA wrote: > > > Adding OSv support. > > > Based on Linux/FreeBSD EAL, but calling OSv kernel APIs to access devices, allocate contiguous memory, etc. > > > > > > + > > > +include $(RTE_SDK)/mk/rte.vars.mk > > > + > > > +LIB = librte_eal.a > > > + > > > +EXPORT_MAP := rte_eal_version.map > > > + > > You never coppied over the version map. How does this build for shared > > libraries? > > OSv probably doesn't do shared libraries. > Ah, then do we need to add a check to prevent trying to configure shared libraries then? Neil