Downloading default network net-015-2048x16x32-132qb-z.bin
curl -sOL https://github.com/liamt19/lizard-nets/releases/download/net-015-2048x16x32-132qb-z/net-015-2048x16x32-132qb-z.bin
clang++ -std=c++20 -g -O3 -DNDEBUG -DEVALFILE=\"net-015-2048x16x32-132qb-z.bin\" -funroll-loops -flto -march=native -DAVX256 -DAVX128 -DUSE_PEXT -o Horsie-5083F50D src/nnue/accumulator.cpp src/bitboard.cpp src/cuckoo.cpp src/Horsie.cpp src/movegen.cpp src/position.cpp src/precomputed.cpp src/search.cpp src/threadpool.cpp src/tt.cpp src/uci.cpp src/wdl.cpp src/zobrist.cpp src/util/dbg_hit.cpp src/nnue/nn.cpp src/datagen/selfplay.cpp src/3rdparty/zstd/zstddeclib.c
clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated [-Wdeprecated]
src/uci.cpp:503:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Threads: {}\n", threads);
~~~~~^
src/uci.cpp:504:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Games/thread: {}\n", games);
~~~~~^
src/uci.cpp:505:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Total games: {}\n", games * threads);
~~~~~^
src/uci.cpp:506:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Node limit: {}\n", nodes);
~~~~~^
src/uci.cpp:507:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Depth limit: {}\n", depth);
~~~~~^
src/uci.cpp:508:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Variant: {}\n", (dfrc ? "DFRC" : "Standard"));
~~~~~^
src/uci.cpp:509:27: error: no member named 'format' in namespace 'std'
std::cout << std::format("Hit enter to begin...\n");
~~~~~^
7 errors generated.
src/datagen/selfplay.cpp:100:35: error: no member named 'format' in namespace 'std'
std::cout << std::format("Thread {:3}: {:>12} {:>15} {:>12.2f} {:8.2f}", i, games, positions, nps, depth);
~~~~~^
src/datagen/selfplay.cpp:109:49: error: no member named 'format' in namespace 'std'
std::cout << " " << std::format("{:>12} {:>15} {:>12.2f} {:>8.2f}", totalGames, totalPositions, totalNPS, totalDepths / threads) << std::endl;
~~~~~^
2 errors generated.
make: *** [Makefile:111: Horsie-5083F50D] Error 1