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

2020-05-18 Thread Narcisa Ana Maria Vasile
On Thu, May 14, 2020 at 01:39:45PM -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 >

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

2020-05-15 Thread Dmitry Kozlyuk
On Thu, 14 May 2020 13:39:45 -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 > > v2

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

2020-05-14 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 v2 changes: Excluded dirent.h file on Windows temporarily.