Re: [dpdk-dev] [PATCH v5 6/8] drivers: fix incorrect meson import folder for Windows

2020-06-16 Thread Bruce Richardson
On Tue, Jun 09, 2020 at 01:31:37PM +0300, tal...@mellanox.com wrote: > From: Tal Shnaiderman > > import library (/IMPLIB) in meson.build should use > the 'drivers' and not 'libs' folder. > > The error is: fatal error LNK1149: output filename matches input filename. > The fix uses the correct fol

Re: [dpdk-dev] [PATCH v5 6/8] drivers: fix incorrect meson import folder for Windows

2020-06-16 Thread Thomas Monjalon
Bruce, please could you review this patch? 09/06/2020 12:31, tal...@mellanox.com: > From: Tal Shnaiderman > > import library (/IMPLIB) in meson.build should use > the 'drivers' and not 'libs' folder. > > The error is: fatal error LNK1149: output filename matches input filename. > The fix uses

[dpdk-dev] [PATCH v5 6/8] drivers: fix incorrect meson import folder for Windows

2020-06-09 Thread talshn
From: Tal Shnaiderman import library (/IMPLIB) in meson.build should use the 'drivers' and not 'libs' folder. The error is: fatal error LNK1149: output filename matches input filename. The fix uses the correct folder. Fixes: 5ed3766981 ("drivers: process shared link dependencies as for libs")