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-3B054359
src/nnue.cpp:5:10: fatal error: 'format' file not found
    5 | #include <format>
      |          ^~~~~~~~
1 error generated.
src/search.cpp:568:21: warning: first argument in call to 'memset' is a pointer to non-trivially copyable type 'std::array<Search::Stack, 128>' [-Wnontrivial-memcall]
  568 |                 std::memset(stack.get(), 0, sizeof(Stack) * (MAX_PLY+3));
      |                                   ^
src/search.cpp:568:21: note: explicitly cast the pointer to silence this warning
  568 |                 std::memset(stack.get(), 0, sizeof(Stack) * (MAX_PLY+3));
      |                                   ^
      |                             (void*)
1 warning generated.
make: *** [Makefile:20: Tarnished-3B054359] Error 1