Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Ye Xiaolong
On 12/03, Bruce Richardson wrote: >On Tue, Dec 03, 2019 at 08:33:22PM +0800, Ye Xiaolong wrote: >> On 12/03, Bruce Richardson wrote: >> >On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: >> >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make >> >> system, for cross

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Bruce Richardson
On Tue, Dec 03, 2019 at 08:33:22PM +0800, Ye Xiaolong wrote: > On 12/03, Bruce Richardson wrote: > >On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: > >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make > >> system, for cross-compilation case, users would specify

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Ye Xiaolong
On 12/03, Bruce Richardson wrote: >On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: >> kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make >> system, for cross-compilation case, users would specify it as local >> kernel src dir like >> >> //target-arm_glibc/linux-ar

Re: [dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-03 Thread Bruce Richardson
On Tue, Dec 03, 2019 at 01:29:17PM +0800, Xiaolong Ye wrote: > kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make > system, for cross-compilation case, users would specify it as local > kernel src dir like > > //target-arm_glibc/linux-arm/linux-4.19.81/ > > Current meson buil

[dpdk-dev] [PATCH v2] kernel/linux: fix kernel dir for meson

2019-12-02 Thread Xiaolong Ye
kernel_dir option in meson build is equivalent to RTE_KERNELDIR in make system, for cross-compilation case, users would specify it as local kernel src dir like //target-arm_glibc/linux-arm/linux-4.19.81/ Current meson build would fail to compile kernel module if user specify kernel_dir as above,