Re: [dpdk-dev] [PATCH] windows: build warnings with clang

2020-11-29 Thread Dmitry Kozlyuk
On Fri, 27 Nov 2020 11:36:23 +, Nick Connolly wrote: > Compiling with Clang (11.0, --buildtype=debug) for Windows > produces deprecated warnings related to secure crt functions. Please explain what these warnings mean and why disabling them is OK. FWIW, I examined present warnings and found no

[dpdk-dev] [PATCH] windows: build warnings with clang

2020-11-27 Thread Nick Connolly
Compiling with Clang (11.0, --buildtype=debug) for Windows produces deprecated warnings related to secure crt functions. Disable this by defining -D_CRT_SECURE_NO_WARNINGS. It is unclear exactly which commit this fixes. It is probably a consequence of building more libraries for Windows. Signed