Hello,
I tried to compile sccache v0.12.0 on Windows, but it fails with the following error:
error[E0432]: unresolved import windows_sys::Win32::System::Threading::CreateProcessW
It seems that the windows_sys crate cannot find CreateProcessW under Win32::System::Threading. I suspect this might be due to either:
- Missing required features in
windows-sys in Cargo.toml (e.g., "Win32_System_Threading"), or
- Changes in
windows-sys API in recent versions.
Environment:
- Windows 10/11
- Rust stable (latest)
- sccache v0.12.0
Thanks for looking into this!