/home/adam/code/OpenBench/Client/Networks/14056267 already exists
CODA_EVALFILE=/home/adam/code/OpenBench/Client/Networks/14056267 cargo rustc --release --features embedded-net -- --emit link=Coda-E885332C-14056267
   Compiling proc-macro2 v1.0.106
   Compiling unicode-ident v1.0.24
   Compiling quote v1.0.45
   Compiling autocfg v1.5.0
   Compiling utf8parse v0.2.2
   Compiling anstyle-query v1.1.5
   Compiling libc v0.2.183
   Compiling arrayvec v0.7.6
   Compiling thiserror v2.0.18
   Compiling anstyle-parse v1.0.0
   Compiling colorchoice v1.0.5
   Compiling anstyle v1.0.14
   Compiling is_terminal_polyfill v1.70.2
   Compiling once_cell v1.21.4
   Compiling strsim v0.11.1
   Compiling num-traits v0.2.19
   Compiling anstream v1.0.0
   Compiling pin-project-lite v0.2.17
   Compiling heck v0.5.0
   Compiling clap_lex v1.1.0
   Compiling tracing-core v0.1.36
   Compiling bitflags v2.11.0
   Compiling byteorder v1.5.0
   Compiling clap_builder v4.6.0
   Compiling syn v2.0.117
   Compiling rustc-hash v2.1.1
   Compiling btoi v0.5.0
   Compiling shakmaty v0.30.0
   Compiling tracing-attributes v0.1.31
   Compiling thiserror-impl v2.0.18
   Compiling clap_derive v4.6.0
   Compiling sfbinpack v0.6.2
   Compiling tracing v0.1.44
   Compiling clap v4.6.0
   Compiling shakmaty-syzygy v0.28.0
   Compiling coda v0.1.0 (/tmp/tmp8ml5nsw8/Coda/Coda-tmp)
warning: unused variable: `ptr`
   --> src/tt.rs:283:13
    |
283 |         let ptr = &self.buckets[idx] as *const TTBucket;
    |             ^^^ help: if this is intentional, prefix it with an underscore: `_ptr`
    |
    = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default

error[E0384]: cannot assign twice to immutable variable `_ponder_depth_flag`
   --> src/uci.rs:151:17
    |
 15 |     let _ponder_depth_flag = info.ponder_depth.clone(); // reserved for future depth-...
    |         ------------------ first assignment to `_ponder_depth_flag`
...
151 |                 _ponder_depth_flag = search_info.ponder_depth.clone();
    |                 ^^^^^^^^^^^^^^^^^^ cannot assign twice to immutable variable
    |
help: consider making this binding mutable
    |
 15 |     let mut _ponder_depth_flag = info.ponder_depth.clone(); // reserved for future depth-aware budget
    |         +++

warning: unused variable: `qa`
    --> src/nnue.rs:1481:13
     |
1481 |         let qa = QA as i32;
     |             ^^
     |
help: you might have meant to pattern match on the similarly named constant `QA`
     |
1481 -         let qa = QA as i32;
1481 +         let nnue::QA = QA as i32;
     |
help: if this is intentional, prefix it with an underscore
     |
1481 |         let _qa = QA as i32;
     |             +

warning: unused variable: `l1_input`
    --> src/nnue.rs:1838:13
     |
1838 |         let l1_input = if self.use_pairwise { h } else { 2 * h };
     |             ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_l1_input`

For more information about this error, try `rustc --explain E0384`.
warning: `coda` (bin "coda") generated 3 warnings
error: could not compile `coda` (bin "coda") due to 1 previous error; 3 warnings emitted
make: *** [Makefile:33: rule] Error 101