cargo pgo instrument
[2025-07-30T14:57:47Z INFO  cargo_pgo::pgo::instrument] PGO profile directory will be cleared.
[2025-07-30T14:57:47Z INFO  cargo_pgo::pgo::instrument] PGO profiles will be stored into C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp\target\pgo-profiles.
   Compiling windows_x86_64_msvc v0.52.6
   Compiling proc-macro2 v1.0.95
   Compiling glob v0.3.2
   Compiling unicode-ident v1.0.18
   Compiling prettyplease v0.2.32
   Compiling libc v0.2.172
   Compiling memchr v2.7.4
   Compiling minimal-lexical v0.2.1
   Compiling windows-targets v0.52.6
   Compiling regex-syntax v0.8.5
   Compiling libloading v0.8.6
   Compiling bindgen v0.71.1
   Compiling clang-sys v1.8.1
   Compiling shlex v1.3.0
   Compiling nom v7.1.3
   Compiling either v1.15.0
   Compiling quote v1.0.40
   Compiling itertools v0.13.0
   Compiling syn v2.0.101
   Compiling log v0.4.27
   Compiling bitflags v2.9.0
   Compiling rustc-hash v2.1.1
   Compiling regex-automata v0.4.9
   Compiling cc v1.2.22
   Compiling cexpr v0.6.0
   Compiling regex v1.11.1
   Compiling reckless v0.8.0-dev (C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp)
warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\arrayvec.rs:56:17
   |
56 |     pub fn iter(&self) -> std::slice::Iter<T> {
   |                 ^^^^^     ------------------- the same lifetime is hidden here
   |                 |
   |                 the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
   = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
   |
56 |     pub fn iter(&self) -> std::slice::Iter<'_, T> {
   |                                            +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\arrayvec.rs:60:21
   |
60 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<T> {
   |                     ^^^^^^^^^     ---------------------- the same lifetime is hidden here
   |                     |
   |                     the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
60 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, T> {
   |                                                       +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\movelist.rs:32:17
   |
32 |     pub fn iter(&self) -> std::slice::Iter<MoveEntry> {
   |                 ^^^^^     --------------------------- the same lifetime is hidden here
   |                 |
   |                 the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
32 |     pub fn iter(&self) -> std::slice::Iter<'_, MoveEntry> {
   |                                            +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\movelist.rs:36:21
   |
36 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<MoveEntry> {
   |                     ^^^^^^^^^     ------------------------------ the same lifetime is hidden here
   |                     |
   |                     the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
36 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, MoveEntry> {
   |                                                       +++

[2025-07-30T14:58:07Z INFO  cargo_pgo::pgo::instrument] PGO-instrumented binary reckless built successfully.
[2025-07-30T14:58:07Z INFO  cargo_pgo::pgo::instrument] Now run C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp\target\x86_64-pc-windows-msvc\release\reckless.exe on your workload.
    If your program creates multiple processes or you will execute it multiple times in parallel, consider running it with the following environment variable to have more precise profiles:
    LLVM_PROFILE_FILE=C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp\target\pgo-profiles/reckless_%m_%p.profraw
    Finished `release` profile [optimized] target(s) in 19.44s
[2025-07-30T14:58:07Z INFO  cargo_pgo::pgo::instrument] PGO instrumentation build finished successfully.
cargo pgo run -- bench
[2025-07-30T14:58:07Z INFO  cargo_pgo::pgo::instrument] PGO profile directory will be cleared.
[2025-07-30T14:58:07Z INFO  cargo_pgo::pgo::instrument] PGO profiles will be stored into C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp\target\pgo-profiles.
   Compiling reckless v0.8.0-dev (C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp)
warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\arrayvec.rs:56:17
   |
56 |     pub fn iter(&self) -> std::slice::Iter<T> {
   |                 ^^^^^     ------------------- the same lifetime is hidden here
   |                 |
   |                 the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
   = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
   |
56 |     pub fn iter(&self) -> std::slice::Iter<'_, T> {
   |                                            +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\arrayvec.rs:60:21
   |
60 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<T> {
   |                     ^^^^^^^^^     ---------------------- the same lifetime is hidden here
   |                     |
   |                     the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
60 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, T> {
   |                                                       +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\movelist.rs:32:17
   |
32 |     pub fn iter(&self) -> std::slice::Iter<MoveEntry> {
   |                 ^^^^^     --------------------------- the same lifetime is hidden here
   |                 |
   |                 the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
32 |     pub fn iter(&self) -> std::slice::Iter<'_, MoveEntry> {
   |                                            +++

warning: hiding a lifetime that's elided elsewhere is confusing
  --> src\types\movelist.rs:36:21
   |
36 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<MoveEntry> {
   |                     ^^^^^^^^^     ------------------------------ the same lifetime is hidden here
   |                     |
   |                     the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
36 |     pub fn iter_mut(&mut self) -> std::slice::IterMut<'_, MoveEntry> {
   |                                                       +++

    Finished `release` profile [optimized] target(s) in 9.20s
[2025-07-30T14:58:16Z INFO  cargo_pgo::pgo::instrument] PGO instrumentation build finished successfully.
     Running `target\x86_64-pc-windows-msvc\release\reckless.exe bench`
Bench: 1751379 nodes 1066050 nps
cargo pgo optimize
[2025-07-30T14:58:18Z WARN  cargo_pgo::pgo::env] llvm-profdata was resolved from PATH. Make sure that its version is compatible with rustc! If not, run `rustup component add llvm-tools-preview`.
[2025-07-30T14:58:18Z INFO  cargo_pgo::pgo::optimize] Found 1 PGO profile file with total size 52.35 KiB at C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp\target\pgo-profiles.
Failed to merge PGO profile(s): warning: C:\Temp\tmp63r8jvfg\Reckless\Reckless-tmp\target\pgo-profiles\default_9829864664768174670_0.profraw: raw profile version mismatch: Profile uses raw profile format version = 10; expected version = 9
PLEASE update this tool to version in the raw profile, or regenerate raw profile with expected version.
error: no profile can be merged
.
make: *** [Makefile:36: rule] Error 1