Building SeaJay for OpenBench...
Compiler: g++
Output: SeaJay-B7535BD5
# Configure with CMake (only build engine, not tests)
cmake -S . -B openbench-build \
	-DCMAKE_BUILD_TYPE=Release \
	-DCMAKE_CXX_COMPILER=g++ \
	-DCMAKE_CXX_FLAGS="-O2 -DNDEBUG" \
	-DEVALFILE="" \
	-DBUILD_TESTING=OFF
-- The CXX compiler identification is GNU 11.4.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/g++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- *** QUIESCENCE SEARCH ENABLED *** Stage 14 is now active!
-- *** MVV-LVA MOVE ORDERING ALWAYS ENABLED (Stage 11) ***
-- Configuring done
-- Generating done
CMake Warning:
  Manually-specified variables were not used by the project:

    BUILD_TESTING
    EVALFILE


-- Build files have been written to: /tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build
# Build ONLY the engine binary (not tests or utilities)
make -C openbench-build -j seajay
make[1]: Entering directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[2]: Entering directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[3]: Entering directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[4]: Entering directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[4]: Leaving directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[4]: Entering directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
[  4%] Building CXX object CMakeFiles/seajay_core.dir/src/core/move_list.cpp.o
[  8%] Building CXX object CMakeFiles/seajay_core.dir/src/core/board_safety.cpp.o
[ 12%] Building CXX object CMakeFiles/seajay_core.dir/src/core/transposition_table.cpp.o
[ 16%] Building CXX object CMakeFiles/seajay_core.dir/src/evaluation/evaluate.cpp.o
[ 20%] Building CXX object CMakeFiles/seajay_core.dir/src/core/perft.cpp.o
[ 24%] Building CXX object CMakeFiles/seajay_core.dir/src/core/see.cpp.o
[ 28%] Building CXX object CMakeFiles/seajay_core.dir/src/core/board.cpp.o
[ 32%] Building CXX object CMakeFiles/seajay_core.dir/src/core/move_generation.cpp.o
[ 40%] Building CXX object CMakeFiles/seajay_core.dir/src/evaluation/pawn_structure.cpp.o
[ 40%] Building CXX object CMakeFiles/seajay_core.dir/src/search/search.cpp.o
[ 44%] Building CXX object CMakeFiles/seajay_core.dir/src/search/move_ordering.cpp.o
[ 48%] Building CXX object CMakeFiles/seajay_core.dir/src/search/negamax.cpp.o
[ 52%] Building CXX object CMakeFiles/seajay_core.dir/src/search/killer_moves.cpp.o
[ 56%] Building CXX object CMakeFiles/seajay_core.dir/src/search/countermoves.cpp.o
[ 60%] Building CXX object CMakeFiles/seajay_core.dir/src/search/history_heuristic.cpp.o
[ 64%] Building CXX object CMakeFiles/seajay_core.dir/src/search/time_management.cpp.o
[ 68%] Building CXX object CMakeFiles/seajay_core.dir/src/search/aspiration_window.cpp.o
[ 72%] Building CXX object CMakeFiles/seajay_core.dir/src/search/quiescence.cpp.o
[ 76%] Building CXX object CMakeFiles/seajay_core.dir/src/search/quiescence_performance.cpp.o
[ 80%] Building CXX object CMakeFiles/seajay_core.dir/src/search/lmr.cpp.o
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp: In member function ‘void seajay::PawnStructure::clear()’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp:22:16: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct seajay::PawnEntry’; use assignment or value-initialization instead [-Wclass-memaccess]
   22 |     std::memset(m_table, 0, m_size * sizeof(PawnEntry));
      |     ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp:1:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.h:10:8: note: ‘struct seajay::PawnEntry’ declared here
   10 | struct PawnEntry {
      |        ^~~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/see.cpp: In member function ‘seajay::Bitboard seajay::SEECalculator::getXrayAttackers(const seajay::Board&, seajay::Square, seajay::Bitboard, seajay::Bitboard) const’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/see.cpp:214:12: warning: unused variable ‘removedSq’ [-Wunused-variable]
  214 |     Square removedSq = lsb(removedPiece);
      |            ^~~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/see.cpp: In member function ‘seajay::SEEValue seajay::SEECalculator::computeSEE(const seajay::Board&, seajay::Square, seajay::Color, seajay::Bitboard, seajay::Bitboard) const’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/see.cpp:561:16: warning: unused variable ‘attackerSquare’ [-Wunused-variable]
  561 |         Square attackerSquare = lsb(attackerBB);
      |                ^~~~~~~~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/evaluation/evaluate.cpp: In function ‘seajay::eval::Score seajay::eval::evaluate(const seajay::Board&)’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/evaluation/evaluate.cpp:394:30: error: ‘const class seajay::Board’ has no member named ‘zobristHash’
  394 |     uint64_t pawnKey = board.zobristHash();  // TODO: Should be pawn-only hash
      |                              ^~~~~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board.cpp: In member function ‘bool seajay::Board::isRepetitionDrawInSearch(const seajay::SearchInfo&, int) const’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board.cpp:2247:9: warning: unused variable ‘maxLookback’ [-Wunused-variable]
 2247 |     int maxLookback = std::min(static_cast<int>(m_halfmoveClock), 100);
      |         ^~~~~~~~~~~
make[4]: *** [CMakeFiles/seajay_core.dir/build.make:174: CMakeFiles/seajay_core.dir/src/evaluation/evaluate.cpp.o] Error 1
make[4]: *** Waiting for unfinished jobs....
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board_safety.cpp: In static member function ‘static seajay::ZobristKeyManager::ZobristUpdate seajay::ZobristKeyManager::buildUpdate(const seajay::Board&, seajay::Move)’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:445:19: warning: unused variable ‘promotedType’ [-Wunused-variable]
  445 |         PieceType promotedType = promotionType(move);
      |                   ^~~~~~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:455:16: warning: unused variable ‘capturedSquare’ [-Wunused-variable]
  455 |         Square capturedSquare = (us == WHITE) ? to - 8 : to + 8;
      |                ^~~~~~~~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board_safety.cpp: In static member function ‘static bool seajay::MoveSequenceValidator::checkForDoubleMoves(const Move*, size_t)’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:563:16: warning: unused variable ‘prevTo’ [-Wunused-variable]
  563 |         Square prevTo = moveTo(moves[i-1]);
      |                ^~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:564:16: warning: unused variable ‘currFrom’ [-Wunused-variable]
  564 |         Square currFrom = moveFrom(moves[i]);
      |                ^~~~~~~~
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/search/quiescence_performance.cpp: In static member function ‘static seajay::search::QuiescencePerformanceData seajay::search::QuiescencePerformanceBenchmark::benchmarkPosition(const string&, int, bool)’:
/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/src/search/quiescence_performance.cpp:109:10: warning: variable ‘startTime’ set but not used [-Wunused-but-set-variable]
  109 |     auto startTime = std::chrono::high_resolution_clock::now();
      |          ^~~~~~~~~
make[4]: Leaving directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[3]: *** [CMakeFiles/Makefile2:88: CMakeFiles/seajay_core.dir/all] Error 2
make[3]: Leaving directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[2]: *** [CMakeFiles/Makefile2:121: CMakeFiles/seajay.dir/rule] Error 2
make[2]: Leaving directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make[1]: *** [Makefile:192: seajay] Error 2
make[1]: Leaving directory '/tmp/tmpg5a93_q2/SeaJay/SeaJay-tmp/openbench-build'
make: *** [Makefile:34: all] Error 2