Re: [dpdk-dev] [PATCH v2] build: replace meson OS detection with variable

2020-06-30 Thread Thomas Monjalon
30/06/2020 15:28, Akhil Goyal: > > Some places were calling the meson function host_machine.system() > > instead of the variables is_windows and is_linux defined > > in config/meson.build. > > > > At the same time, the missing "Linux restriction" reason is added to > > pfe and octeontx2 crypto PMD

Re: [dpdk-dev] [PATCH v2] build: replace meson OS detection with variable

2020-06-30 Thread Akhil Goyal
> Some places were calling the meson function host_machine.system() > instead of the variables is_windows and is_linux defined > in config/meson.build. > > At the same time, the missing "Linux restriction" reason is added to > pfe and octeontx2 crypto PMDs. > > Signed-off-by: Thomas Monjalon > A

Re: [dpdk-dev] [PATCH v2] build: replace meson OS detection with variable

2020-06-30 Thread Bruce Richardson
On Tue, Jun 30, 2020 at 03:15:22PM +0200, Thomas Monjalon wrote: > Some places were calling the meson function host_machine.system() > instead of the variables is_windows and is_linux defined > in config/meson.build. > > At the same time, the missing "Linux restriction" reason is added to > pfe an

[dpdk-dev] [PATCH v2] build: replace meson OS detection with variable

2020-06-30 Thread Thomas Monjalon
Some places were calling the meson function host_machine.system() instead of the variables is_windows and is_linux defined in config/meson.build. At the same time, the missing "Linux restriction" reason is added to pfe and octeontx2 crypto PMDs. Signed-off-by: Thomas Monjalon Acked-by: Bruce Ric