Re: [dpdk-dev] [PATCH 2/3] app/test: fix building with GCC 10

2020-02-05 Thread Medvedkin, Vladimir
On 05/02/2020 12:50, Timothy Redaelli wrote: GCC 10 defaults to -fno-common, this means a linker error will now be reported if the same global variable is defined in more than one compilation unit. Fixes: 08e0c7581468 ("test/fib: add performance autotests") Cc: vladimir.medved...@intel.com Cc: s

[dpdk-dev] [PATCH 2/3] app/test: fix building with GCC 10

2020-02-05 Thread Timothy Redaelli
GCC 10 defaults to -fno-common, this means a linker error will now be reported if the same global variable is defined in more than one compilation unit. Fixes: 08e0c7581468 ("test/fib: add performance autotests") Cc: vladimir.medved...@intel.com Cc: sta...@dpdk.org Signed-off-by: Timothy Redaelli