clang++ -O3 -march=native -ffast-math -fno-finite-math-only -funroll-loops -flto -fuse-ld=lld -std=c++20 -static -DNDEBUG -pthread -fuse-ld=lld src/*.cpp -o Tarnished-9A92D3D8
src/nnue.cpp:5:10: fatal error: 'format' file not found
5 | #include <format>
| ^~~~~~~~
1 error generated.
src/search.cpp:525:21: warning: first argument in call to 'memset' is a pointer to non-trivially copyable type 'std::array<Search::Stack, 128>' [-Wnontrivial-memcall]
525 | std::memset(stack.get(), 0, sizeof(Stack) * (MAX_PLY+3));
| ^
src/search.cpp:525:21: note: explicitly cast the pointer to silence this warning
525 | std::memset(stack.get(), 0, sizeof(Stack) * (MAX_PLY+3));
| ^
| (void*)
1 warning generated.
make: *** [Makefile:20: Tarnished-9A92D3D8] Error 1