Downloading default network stormveil.bin
curl -sOL https://github.com/Bobingstern/tarnished-nets/releases/download/stormveil/stormveil.bin
clang++ -O3 -march=native -fno-finite-math-only -funroll-loops -flto -fuse-ld=lld -std=c++20 -static -DNDEBUG -pthread -DEVALFILE=\"stormveil.bin\" -fuse-ld=lld src/datagen.cpp src/main.cpp src/movepicker.cpp src/nnue.cpp src/parameters.cpp src/search.cpp src/searcher.cpp src/util.cpp -o Tarnished-EF4F8C00
src/main.cpp:95:18: warning: 'strtok' is deprecated: This function or variable may be unsafe. Consider using strtok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. [-Wdeprecated-declarations]
   95 |     char *move = strtok(str, " ");
      |                  ^
C:\Program Files (x86)\Windows Kits\10\Include\10.0.26100.0\ucrt\string.h:435:16: note: 'strtok' has been explicitly marked deprecated here
  435 | _Check_return_ _CRT_INSECURE_DEPRECATE(strtok_s)
      |                ^
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\include\vcruntime.h:368:55: note: expanded from macro '_CRT_INSECURE_DEPRECATE'
  368 |         #define _CRT_INSECURE_DEPRECATE(_Replacement) _CRT_DEPRECATE_TEXT(    \
      |                                                       ^
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\include\vcruntime.h:358:47: note: expanded from macro '_CRT_DEPRECATE_TEXT'
  358 | #define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))
      |                                               ^
src/main.cpp:96:20: warning: 'strtok' is deprecated: This function or variable may be unsafe. Consider using strtok_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. [-Wdeprecated-declarations]
   96 |     while ((move = strtok(NULL, " "))) {
      |                    ^
C:\Program Files (x86)\Windows Kits\10\Include\10.0.26100.0\ucrt\string.h:435:16: note: 'strtok' has been explicitly marked deprecated here
  435 | _Check_return_ _CRT_INSECURE_DEPRECATE(strtok_s)
      |                ^
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\include\vcruntime.h:368:55: note: expanded from macro '_CRT_INSECURE_DEPRECATE'
  368 |         #define _CRT_INSECURE_DEPRECATE(_Replacement) _CRT_DEPRECATE_TEXT(    \
      |                                                       ^
C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.44.35207\include\vcruntime.h:358:47: note: expanded from macro '_CRT_DEPRECATE_TEXT'
  358 | #define _CRT_DEPRECATE_TEXT(_Text) __declspec(deprecated(_Text))
      |                                               ^
<inline asm>:3:7: error: expected absolute expression
    3 | .type gEVALData, @object
      |       ^
<inline asm>:8:7: error: expected absolute expression
    8 | .type gEVALEnd, @object
      |       ^
<inline asm>:13:7: error: expected absolute expression
   13 | .type gEVALSize, @object
      |       ^
2 warnings and 3 errors generated.
src/nnue.cpp:32:17: warning: Using AVX512 NNUE inference [-W#pragma-messages]
   32 |         #pragma message("Using AVX512 NNUE inference")
      |                 ^
1 warning generated.
src/search.cpp:648:21: warning: first argument in call to 'memset' is a pointer to non-trivially copyable type 'std::array<Search::Stack, 128>' [-Wnontrivial-memcall]
  648 |                 std::memset(stack.get(), 0, sizeof(Stack) * (MAX_PLY+3));
      |                                   ^
src/search.cpp:648:21: note: explicitly cast the pointer to silence this warning
  648 |                 std::memset(stack.get(), 0, sizeof(Stack) * (MAX_PLY+3));
      |                                   ^
      |                             (void*)
1 warning generated.
make: *** [Makefile:35: Tarnished-EF4F8C00] Error 1