Re: [dpdk-dev] [PATCH 1/3] examples/vhost_blk: fix building with GCC 10

2020-02-05 Thread Maxime Coquelin
On 2/5/20 2:47 PM, 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: c19beb3f38cd ("examples/vhost_blk: introduce vhost storage sample") > Cc: jin...@i

[dpdk-dev] [PATCH 1/3] examples/vhost_blk: 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: c19beb3f38cd ("examples/vhost_blk: introduce vhost storage sample") Cc: jin...@intel.com Cc: sta...@dpdk.org Signed-off-by: Timothy Redael