Re: [dpdk-dev] [PATCH v2] build: allow using wildcards to disable drivers

2020-01-21 Thread Robin Jarry
2020-01-21, Bruce Richardson: > > > +from glob import iglob # glob iterator > > > > No need to make it explicit. People can read the description in the > > official docs. > > Except the fact that you yourself mistook it for a case-insensitive glob > implies that a comment is needed! :-) The fact

Re: [dpdk-dev] [PATCH v2] build: allow using wildcards to disable drivers

2020-01-21 Thread Bruce Richardson
On Tue, Jan 21, 2020 at 02:22:38PM +0100, Robin Jarry wrote: > 2020-01-21, Bruce Richardson: > > Rather than having to explicitly list each and every driver to disable in a > > build, we can use a small python script and the python glob library to > > expand out the wildcards. This means that we ca

Re: [dpdk-dev] [PATCH v2] build: allow using wildcards to disable drivers

2020-01-21 Thread Robin Jarry
2020-01-21, Bruce Richardson: > Rather than having to explicitly list each and every driver to disable in a > build, we can use a small python script and the python glob library to > expand out the wildcards. This means that we can configure meson using e.g. > > meson -Ddisable_drivers=crypto/

[dpdk-dev] [PATCH v2] build: allow using wildcards to disable drivers

2020-01-21 Thread Bruce Richardson
Rather than having to explicitly list each and every driver to disable in a build, we can use a small python script and the python glob library to expand out the wildcards. This means that we can configure meson using e.g. meson -Ddisable_drivers=crypto/*,event/* build to do a build omitting