Re: [dpdk-dev] [PATCH 1/2] eal: fix build with glibc < 2.16

2018-04-30 Thread Aaron Conole
Thomas Monjalon writes: > The fake getauxval function does not use its parameter. > So the compiler raised this error: > lib/librte_eal/common/eal_common_cpuflags.c:25:25: error: > unused parameter 'type' > > Fixes: 2ed9bf330709 ("eal: abstract away the auxiliary vector") > Cc: acon..

[dpdk-dev] [PATCH 1/2] eal: fix build with glibc < 2.16

2018-04-26 Thread Thomas Monjalon
The fake getauxval function does not use its parameter. So the compiler raised this error: lib/librte_eal/common/eal_common_cpuflags.c:25:25: error: unused parameter 'type' Fixes: 2ed9bf330709 ("eal: abstract away the auxiliary vector") Cc: acon...@redhat.com Cc: tredae...@redhat.c