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-7BCF037D 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]
In file included from src/search.cpp:3:
In file included from src/search.h:5:
In file included from src/move.h:7:
In file included from src/util.h:5:
In file included from src/search_options.h:4:
In file included from src/tunable.h:5:
In file included from /usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/c++/12/algorithm:61:
In file included from /usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/c++/12/bits/stl_algo.h:61:
/usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/c++/12/bits/stl_tempbuf.h:263:8: warning: 'get_temporary_buffer<Horsie::Search::RootMove>' is deprecated [-Wdeprecated-declarations]
263 | std::get_temporary_buffer<value_type>(_M_original_len));
| ^
/usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/c++/12/bits/stl_algo.h:4996:15: note: in instantiation of member function 'std::_Temporary_buffer<__gnu_cxx::__normal_iterator<Horsie::Search::RootMove *, std::vector<Horsie::Search::RootMove>>, Horsie::Search::RootMove>::_Temporary_buffer' requested here
4996 | _TmpBuf __buf(__first, (__last - __first + 1) / 2);
| ^
/usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/c++/12/bits/stl_algo.h:5034:23: note: in instantiation of function template specialization 'std::__stable_sort<__gnu_cxx::__normal_iterator<Horsie::Search::RootMove *, std::vector<Horsie::Search::RootMove>>, __gnu_cxx::__ops::_Iter_less_iter>' requested here
5034 | _GLIBCXX_STD_A::__stable_sort(__first, __last,
| ^
src/search.cpp:105:26: note: in instantiation of function template specialization 'std::stable_sort<__gnu_cxx::__normal_iterator<Horsie::Search::RootMove *, std::vector<Horsie::Search::RootMove>>>' requested here
105 | std::stable_sort(RootMoves.begin() + PVIndex, RootMoves.end());
| ^
/usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/c++/12/bits/stl_tempbuf.h:99:5: note: 'get_temporary_buffer<Horsie::Search::RootMove>' has been explicitly marked deprecated here
99 | _GLIBCXX17_DEPRECATED
| ^
/usr/lib/gcc/x86_64-linux-gnu/12/../../../../include/x86_64-linux-gnu/c++/12/bits/c++config.h:119:34: note: expanded from macro '_GLIBCXX17_DEPRECATED'
119 | # define _GLIBCXX17_DEPRECATED [[__deprecated__]]
| ^
1 warning generated.
src/uci.cpp:17:10: fatal error: 'format' file not found
17 | #include <format>
| ^~~~~~~~
1 error generated.
src/datagen/selfplay.cpp:12:10: fatal error: 'format' file not found
12 | #include <format>
| ^~~~~~~~
1 error generated.
make: *** [Makefile:111: Horsie-7BCF037D] Error 1