Re: [dpdk-dev] [PATCH] eal/x86: fix pedantic build

2019-04-04 Thread Thomas Monjalon
04/04/2019 17:13, Ferruh Yigit: > On 4/4/2019 3:14 PM, Eads, Gage wrote: > >> 04/04/2019 15:00, Thomas Monjalon: > >>> When enabling pedantic compilation with > >> CONFIG_RTE_LIBRTE_MLX5_DEBUG, > >>> the compiler complains about non standard 128-bit integer type: > >>> > >>> include/rte_atomic_64.h

Re: [dpdk-dev] [PATCH] eal/x86: fix pedantic build

2019-04-04 Thread Ferruh Yigit
On 4/4/2019 3:14 PM, Eads, Gage wrote: > >> 04/04/2019 15:00, Thomas Monjalon: >>> When enabling pedantic compilation with >> CONFIG_RTE_LIBRTE_MLX5_DEBUG, >>> the compiler complains about non standard 128-bit integer type: >>> >>> include/rte_atomic_64.h:223:3: error: >>> ISO C does not support ‘

Re: [dpdk-dev] [PATCH] eal/x86: fix pedantic build

2019-04-04 Thread Eads, Gage
> 04/04/2019 15:00, Thomas Monjalon: > > When enabling pedantic compilation with > CONFIG_RTE_LIBRTE_MLX5_DEBUG, > > the compiler complains about non standard 128-bit integer type: > > > > include/rte_atomic_64.h:223:3: error: > > ISO C does not support ‘__int128’ types [-Werror=pedantic] > > > >

Re: [dpdk-dev] [PATCH] eal/x86: fix pedantic build

2019-04-04 Thread Thomas Monjalon
04/04/2019 15:00, Thomas Monjalon: > When enabling pedantic compilation with CONFIG_RTE_LIBRTE_MLX5_DEBUG, > the compiler complains about non standard 128-bit integer type: > > include/rte_atomic_64.h:223:3: error: > ISO C does not support ‘__int128’ types [-Werror=pedantic] > > It must be marked

[dpdk-dev] [PATCH] eal/x86: fix pedantic build

2019-04-04 Thread Thomas Monjalon
When enabling pedantic compilation with CONFIG_RTE_LIBRTE_MLX5_DEBUG, the compiler complains about non standard 128-bit integer type: include/rte_atomic_64.h:223:3: error: ISO C does not support ‘__int128’ types [-Werror=pedantic] It must be marked as an extension of the standard C language to be