Re: [dpdk-dev] [PATCH] drivers/crypto: fix gcc 10 no-common errors

2020-05-15 Thread Akhil Goyal
> > Tidy solution. > Thanks. > > Acked-by: Ray Kinsella Applied to dpdk-next-crypto

Re: [dpdk-dev] [PATCH] drivers/crypto: fix gcc 10 no-common errors

2020-05-14 Thread Ray Kinsella
Tidy solution. On 13/05/2020 17:40, Kevin Traynor wrote: > On 13/05/2020 14:50, akhil.go...@nxp.com wrote: >> From: Akhil Goyal >> >> gcc 10 defaults to -fno-common and as a result when linking >> with crypto drivers: >> >> drivers/librte_pmd_dpaa_sec.a(crypto_dpaa_sec_dpaa_sec.c.o): >> (.bss+0

Re: [dpdk-dev] [PATCH] drivers/crypto: fix gcc 10 no-common errors

2020-05-13 Thread Kevin Traynor
On 13/05/2020 14:50, akhil.go...@nxp.com wrote: > From: Akhil Goyal > > gcc 10 defaults to -fno-common and as a result when linking > with crypto drivers: > > drivers/librte_pmd_dpaa_sec.a(crypto_dpaa_sec_dpaa_sec.c.o): > (.bss+0x4): multiple definition of `rta_sec_era'; > drivers/librte_pmd_caa

[dpdk-dev] [PATCH] drivers/crypto: fix gcc 10 no-common errors

2020-05-13 Thread akhil . goyal
From: Akhil Goyal gcc 10 defaults to -fno-common and as a result when linking with crypto drivers: drivers/librte_pmd_dpaa_sec.a(crypto_dpaa_sec_dpaa_sec.c.o): (.bss+0x4): multiple definition of `rta_sec_era'; drivers/librte_pmd_caam_jr.a(crypto_caam_jr_caam_jr.c.o): (.bss+0x0): first defined he