Message ID | 20200601103139.8612-5-fady@mellanox.com (mailing list archive) |
---|---|
State | Superseded, archived |
Delegated to: | Thomas Monjalon |
Headers | show |
Series | build mempool on Windows | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
ci/Intel-compilation | fail | apply issues |
On 6/1/20 1:31 PM, Fady Bader wrote: > Added mempool to supported libraries for Windows compilation. > > Signed-off-by: Fady Bader <fady@mellanox.com> > --- > lib/meson.build | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/lib/meson.build b/lib/meson.build > index 30ed9e05e..c53732383 100644 > --- a/lib/meson.build > +++ b/lib/meson.build > @@ -39,7 +39,8 @@ if is_windows > libraries = [ > 'kvargs', > 'eal', > - 'ring' > + 'ring', It should be a comma after 'ring' in ring patchset. > + 'mempool', > ] # only supported libraries for windows > endif > >
diff --git a/lib/meson.build b/lib/meson.build index 30ed9e05e..c53732383 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -39,7 +39,8 @@ if is_windows libraries = [ 'kvargs', 'eal', - 'ring' + 'ring', + 'mempool', ] # only supported libraries for windows endif
Added mempool to supported libraries for Windows compilation. Signed-off-by: Fady Bader <fady@mellanox.com> --- lib/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)