From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <syuu@cloudius-systems.com>
Received: from mail-qc0-f178.google.com (mail-qc0-f178.google.com
 [209.85.216.178]) by dpdk.org (Postfix) with ESMTP id 315BD9ABB
 for <dev@dpdk.org>; Sat, 21 Mar 2015 04:23:57 +0100 (CET)
Received: by qcbkw5 with SMTP id kw5so109085516qcb.2
 for <dev@dpdk.org>; Fri, 20 Mar 2015 20:23:56 -0700 (PDT)
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20130820;
 h=x-gm-message-state:mime-version:in-reply-to:references:date
 :message-id:subject:from:to:cc:content-type;
 bh=eo5nEqGKKawU3/+W3KoqLiM6DjDxlyIfSOIykCQE8lg=;
 b=Mq34wd3tWeYCO/AuVCFylpSkNi20OX/u1FxESADK0KFxnhoY1LvucqxgAfp86W5VXv
 HkLLYMiT4tTvDQrDrA+3WomJxx6Goc6euJxl5Zji9mYkDJeUXeb6phHkEy+0CzJHrnrl
 l0L1hLps1Ee+6PM03J1OOZm5JhuUVDazMfmsaoxH5amn2lYmgqptCskIvEylUxiyzK5e
 wbpb5azh//WY6zccbGwu3mIRVUaK75RsuzOvYlk+DqirTKgx+WsFvczjj9e6CVp0ccn8
 uM0MDHj3KSoltZa5nRNp4io6CplPJV+DeohWf3CP4+WMZOciFSxh/UnXjz82bTrezb2V
 GKwQ==
X-Gm-Message-State: ALoCoQmW/NFTX+R0IdjVAw3B2BZW0qyDeSYCy1ITJRzcajpY5/smIE0Uo1WJDQA0NTPH74GIc9of
MIME-Version: 1.0
X-Received: by 10.55.24.157 with SMTP id 29mr150339047qky.83.1426908236771;
 Fri, 20 Mar 2015 20:23:56 -0700 (PDT)
Received: by 10.140.35.230 with HTTP; Fri, 20 Mar 2015 20:23:56 -0700 (PDT)
In-Reply-To: <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>
 <20150316224259.GA28909@neilslaptop.think-freely.org>
Date: Sat, 21 Mar 2015 12:23:56 +0900
Message-ID: <CAPWdggigT_qy8Mq4QrziAxtkQPXy2kD-=9fi2=EdVdK0rpL77w@mail.gmail.com>
From: Takuya ASADA <syuu@cloudius-systems.com>
To: Neil Horman <nhorman@tuxdriver.com>
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.15
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 <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Sat, 21 Mar 2015 03:23:57 -0000

I forgot to copied rte_eal_version.map, added on new patchset.
OSv supports shared libraries, but I found that DPDK shared libraries
causes an error on OSv:
https://github.com/cloudius-systems/osv/issues/599
I'll fix it shortly.



On Tue, Mar 17, 2015 at 7:42 AM, Neil Horman <nhorman@tuxdriver.com> wrote:

> On Mon, Mar 16, 2015 at 01:21:53PM -0700, Stephen Hemminger wrote:
> > On Sun, 15 Mar 2015 08:01:22 -0400
> > Neil Horman <nhorman@tuxdriver.com> 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.
> > > ><snip>
> > > > +
> > > > +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
>
>