Re: [dpdk-dev] [PATCH v6 0/3] pmdinfogen: rewrite in Python

2020-10-14 Thread Dmitry Kozlyuk
Hi Maxime, > Ninja fails when pyelftools is not installed. > Shouldn't meson detect and report it before build time? Will add in v7. Meson 0.51 introduced a terse way to check for Python dependencies, but it's not hard even with Meson 0.47.1. https://github.com/mesonbuild/meson/issues/3551#issu

Re: [dpdk-dev] [PATCH v6 0/3] pmdinfogen: rewrite in Python

2020-10-14 Thread Maxime Coquelin
Hi Dmitry, On 10/4/20 3:59 AM, Dmitry Kozlyuk wrote: > This patchset implements existing pmdinfogen logic in Python, replaces > and removes the old code. The goals of rewriting are: > > * easier maintenance by using a more high-level language, > * simpler build process without host application an

[dpdk-dev] [PATCH v6 0/3] pmdinfogen: rewrite in Python

2020-10-03 Thread Dmitry Kozlyuk
This patchset implements existing pmdinfogen logic in Python, replaces and removes the old code. The goals of rewriting are: * easier maintenance by using a more high-level language, * simpler build process without host application and libelf, * foundation for adding Windows support. Travis CI sc