Re: [dpdk-dev] [PATCH v6 9/9] build: generate version.map file for MingW on Windows

2020-06-20 Thread Tal Shnaiderman
> Subject: Re: [PATCH v6 9/9] build: generate version.map file for MingW on > Windows > > On Fri, 19 Jun 2020 00:15:46 +0300 > tal...@mellanox.com wrote: > > > From: Tal Shnaiderman > > > > The MingW build for Windows has special cases where exported function > > contain additional prefix: > > >

Re: [dpdk-dev] [PATCH v6 9/9] build: generate version.map file for MingW on Windows

2020-06-20 Thread Tal Shnaiderman
Thanks Dmitry, Using libname is the correct way in drivers/meson.build. I'll modify lib/meson.build to use libname for consistency. > -Original Message- > From: Dmitry Kozlyuk > Sent: Saturday, June 20, 2020 9:55 PM > To: Tal Shnaiderman > Cc: dev@dpdk.org; Thomas Monjalon ; > pallavi.k

Re: [dpdk-dev] [PATCH v6 9/9] build: generate version.map file for MingW on Windows

2020-06-20 Thread Dmitry Kozlyuk
[snip] > diff --git a/drivers/meson.build b/drivers/meson.build > index 646a7d5eb5..b25a368531 100644 > --- a/drivers/meson.build > +++ b/drivers/meson.build > @@ -152,16 +152,22 @@ foreach class:dpdk_driver_classes > implib = 'lib' + lib_name + '.dll.a' > >

Re: [dpdk-dev] [PATCH v6 9/9] build: generate version.map file for MingW on Windows

2020-06-18 Thread Dmitry Kozlyuk
On Fri, 19 Jun 2020 00:15:46 +0300 tal...@mellanox.com wrote: > From: Tal Shnaiderman > > The MingW build for Windows has special cases where exported > function contain additional prefix: > > __emutls_v.per_lcore__* > > To avoid adding those prefixed functions to the version.map file > the ma

[dpdk-dev] [PATCH v6 9/9] build: generate version.map file for MingW on Windows

2020-06-18 Thread talshn
From: Tal Shnaiderman The MingW build for Windows has special cases where exported function contain additional prefix: __emutls_v.per_lcore__* To avoid adding those prefixed functions to the version.map file the map_to_def.py script was modified to create a map file for Mingw with the needed ch