cargo pgo instrument
[2025-07-29T16:33:44Z INFO  cargo_pgo::pgo::instrument] PGO profile directory will be cleared.
[2025-07-29T16:33:44Z INFO  cargo_pgo::pgo::instrument] PGO profiles will be stored into C:\Temp\tmpo7xwyrhc\Reckless\Reckless-tmp\target\pgo-profiles.
   Compiling windows_x86_64_msvc v0.52.6
   Compiling proc-macro2 v1.0.95
   Compiling unicode-ident v1.0.18
   Compiling glob v0.3.2
   Compiling prettyplease v0.2.32
   Compiling libc v0.2.172
   Compiling memchr v2.7.4
   Compiling regex-syntax v0.8.5
   Compiling windows-targets v0.52.6
   Compiling minimal-lexical v0.2.1
   Compiling clang-sys v1.8.1
   Compiling libloading v0.8.6
   Compiling nom v7.1.3
   Compiling quote v1.0.40
   Compiling either v1.15.0
   Compiling bindgen v0.71.1
   Compiling syn v2.0.101
   Compiling shlex v1.3.0
   Compiling itertools v0.13.0
   Compiling rustc-hash v2.1.1
   Compiling log v0.4.27
   Compiling regex-automata v0.4.9
   Compiling cexpr v0.6.0
   Compiling bitflags v2.9.0
   Compiling cc v1.2.22
   Compiling regex v1.11.1
   Compiling reckless v0.8.0-dev (C:\Temp\tmpo7xwyrhc\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-29T16:34:02Z INFO  cargo_pgo::pgo::instrument] PGO-instrumented binary reckless built successfully.
[2025-07-29T16:34:02Z INFO  cargo_pgo::pgo::instrument] Now run C:\Temp\tmpo7xwyrhc\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\tmpo7xwyrhc\Reckless\Reckless-tmp\target\pgo-profiles/reckless_%m_%p.profraw
    Finished `release` profile [optimized] target(s) in 18.13s
[2025-07-29T16:34:02Z INFO  cargo_pgo::pgo::instrument] PGO instrumentation build finished successfully.
cargo pgo run -- bench
[2025-07-29T16:34:03Z INFO  cargo_pgo::pgo::instrument] PGO profile directory will be cleared.
[2025-07-29T16:34:03Z INFO  cargo_pgo::pgo::instrument] PGO profiles will be stored into C:\Temp\tmpo7xwyrhc\Reckless\Reckless-tmp\target\pgo-profiles.
   Compiling reckless v0.8.0-dev (C:\Temp\tmpo7xwyrhc\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 8.97s
[2025-07-29T16:34:12Z INFO  cargo_pgo::pgo::instrument] PGO instrumentation build finished successfully.
     Running `target\x86_64-pc-windows-msvc\release\reckless.exe bench`
Bench: 1681672 nodes 1050650 nps
cargo pgo optimize
[2025-07-29T16:34:14Z 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-29T16:34:14Z INFO  cargo_pgo::pgo::optimize] Found 1 PGO profile file with total size 49.27 KiB at C:\Temp\tmpo7xwyrhc\Reckless\Reckless-tmp\target\pgo-profiles.
Failed to merge PGO profile(s): warning: C:\Temp\tmpo7xwyrhc\Reckless\Reckless-tmp\target\pgo-profiles\default_6078870466127183061_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