Re: [dpdk-dev] [PATCH v2 1/3] config: introduce global rte debug flag

2020-07-09 Thread Lukasz Wojciechowski
W dniu 09.07.2020 o 16:09, Bruce Richardson pisze: > On Thu, Jul 09, 2020 at 03:51:25PM +0200, Lukasz Wojciechowski wrote: >> W dniu 26.06.2020 o 18:56, Bruce Richardson pisze: >>> On Wed, Apr 22, 2020 at 11:45:53PM +0200, Lukasz Wojciechowski wrote: A new boolean meson build flag is introdu

Re: [dpdk-dev] [PATCH v2 1/3] config: introduce global rte debug flag

2020-07-09 Thread Bruce Richardson
On Thu, Jul 09, 2020 at 03:51:25PM +0200, Lukasz Wojciechowski wrote: > > W dniu 26.06.2020 o 18:56, Bruce Richardson pisze: > > On Wed, Apr 22, 2020 at 11:45:53PM +0200, Lukasz Wojciechowski wrote: > >> A new boolean meson build flag is introduced with this patch: rte_debug. > >> To enable this o

Re: [dpdk-dev] [PATCH v2 1/3] config: introduce global rte debug flag

2020-07-09 Thread Lukasz Wojciechowski
W dniu 26.06.2020 o 18:56, Bruce Richardson pisze: > On Wed, Apr 22, 2020 at 11:45:53PM +0200, Lukasz Wojciechowski wrote: >> A new boolean meson build flag is introduced with this patch: rte_debug. >> To enable this option add -Drte_debug=true to the meson configure command. >> >> By enabling th

Re: [dpdk-dev] [PATCH v2 1/3] config: introduce global rte debug flag

2020-06-28 Thread Andrew Rybchenko
On 6/26/20 7:56 PM, Bruce Richardson wrote: > On Wed, Apr 22, 2020 at 11:45:53PM +0200, Lukasz Wojciechowski wrote: >> A new boolean meson build flag is introduced with this patch: rte_debug. >> To enable this option add -Drte_debug=true to the meson configure command. >> >> By enabling this flag t

Re: [dpdk-dev] [PATCH v2 1/3] config: introduce global rte debug flag

2020-06-26 Thread Bruce Richardson
On Wed, Apr 22, 2020 at 11:45:53PM +0200, Lukasz Wojciechowski wrote: > A new boolean meson build flag is introduced with this patch: rte_debug. > To enable this option add -Drte_debug=true to the meson configure command. > > By enabling this flag the globaly defined macro RTE_DEBUG becomes > defi

[dpdk-dev] [PATCH v2 1/3] config: introduce global rte debug flag

2020-04-22 Thread Lukasz Wojciechowski
A new boolean meson build flag is introduced with this patch: rte_debug. To enable this option add -Drte_debug=true to the meson configure command. By enabling this flag the globaly defined macro RTE_DEBUG becomes defined. It should be used for enabling debug code in all dpdk project components. U