Re: [dpdk-dev] [PATCH v2] meson: fix building subdirectories separately

2019-03-05 Thread Ranjit Menon
On 3/5/2019 9:26 AM, Bruce Richardson wrote: On Tue, Mar 05, 2019 at 05:21:12PM +, Bruce Richardson wrote: On Tue, Mar 05, 2019 at 04:29:25PM +, Andrius Sirvys wrote: If for debugging we disable the driver directory in the meson.build file, we get an error because the variable "drive

Re: [dpdk-dev] [PATCH v2] meson: fix building subdirectories separately

2019-03-05 Thread Bruce Richardson
On Tue, Mar 05, 2019 at 05:21:12PM +, Bruce Richardson wrote: > On Tue, Mar 05, 2019 at 04:29:25PM +, Andrius Sirvys wrote: > > If for debugging we disable the driver directory in the meson.build file, > > we get an error because the variable "driver_classes" does not exist. > > This is bec

Re: [dpdk-dev] [PATCH v2] meson: fix building subdirectories separately

2019-03-05 Thread Bruce Richardson
On Tue, Mar 05, 2019 at 04:29:25PM +, Andrius Sirvys wrote: > If for debugging we disable the driver directory in the meson.build file, > we get an error because the variable "driver_classes" does not exist. > This is because driver_classes is only defined in the > drivers/meson.build file. Def

[dpdk-dev] [PATCH v2] meson: fix building subdirectories separately

2019-03-05 Thread Andrius Sirvys
If for debugging we disable the driver directory in the meson.build file, we get an error because the variable "driver_classes" does not exist. This is because driver_classes is only defined in the drivers/meson.build file. Defining driver_classes in dpdk/meson.build file will make it easier for co