> -----Original Message-----
> From: Nelio Laranjeiro [mailto:[email protected]]
> Sent: Thursday, November 23, 2017 10:03 AM
> To: Akhil Goyal <[email protected]>; Doherty, Declan
> <[email protected]>
> Cc: [email protected]; Gaetan Rivet <[email protected]>; De Lara
> Guarch, Pablo <[email protected]>; [email protected]
> Subject: [PATCH v2 2/3] crypto: fix pedantic compilation errors
>
...
> --- a/lib/librte_cryptodev/rte_crypto.h
> +++ b/lib/librte_cryptodev/rte_crypto.h
> @@ -121,7 +121,7 @@ struct rte_crypto_op {
> rte_iova_t phys_addr;
> /**< physical address of crypto operation */
>
> - RTE_STD_C11
> + __extension__
Hi Nelio,
Since RTE_STD_C11 is basically __extension__ when __STDC_VERSION__ is not
defined,
Is this forcing __extension__ to be used no matter what? (even if C11 is not
supported).
Thanks,
Pablo