Re: [dpdk-dev] [PATCH] eal: fix warnings on Windows

2020-05-14 Thread Ranjit Menon
On 5/14/2020 1:02 AM, Thomas Monjalon wrote: 14/05/2020 00:53, Pallavi Kadam: This patch fixes bunch of warnings when compiling on Windows such as the use of an unsafe string function (strerror), [-Wunused-const-variable] in getopt.c and [-Wunused-variable], [-Wunused-function] in eal_common_opt

Re: [dpdk-dev] [PATCH] eal: fix warnings on Windows

2020-05-14 Thread Thomas Monjalon
14/05/2020 00:53, Pallavi Kadam: > This patch fixes bunch of warnings when compiling on Windows > such as the use of an unsafe string function (strerror), > [-Wunused-const-variable] in getopt.c and > [-Wunused-variable], [-Wunused-function] in eal_common_options.c > > Signed-off-by: Ranjit Menon

Re: [dpdk-dev] [PATCH] eal: fix warnings on Windows

2020-05-13 Thread Ranjit Menon
On 5/13/2020 5:43 PM, Dmitry Kozlyuk wrote: On Wed, 13 May 2020 15:53:41 -0700 Pallavi Kadam wrote: This patch fixes bunch of warnings when compiling on Windows such as the use of an unsafe string function (strerror), [-Wunused-const-variable] in getopt.c and [-Wunused-variable], [-Wunused-funct

Re: [dpdk-dev] [PATCH] eal: fix warnings on Windows

2020-05-13 Thread Dmitry Kozlyuk
On Wed, 13 May 2020 15:53:41 -0700 Pallavi Kadam wrote: > This patch fixes bunch of warnings when compiling on Windows > such as the use of an unsafe string function (strerror), > [-Wunused-const-variable] in getopt.c and > [-Wunused-variable], [-Wunused-function] in eal_common_options.c > > Signe

[dpdk-dev] [PATCH] eal: fix warnings on Windows

2020-05-13 Thread Pallavi Kadam
This patch fixes bunch of warnings when compiling on Windows such as the use of an unsafe string function (strerror), [-Wunused-const-variable] in getopt.c and [-Wunused-variable], [-Wunused-function] in eal_common_options.c Signed-off-by: Ranjit Menon Signed-off-by: Pallavi Kadam Tested-by: Pal