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!
Hello,
I tried to compile
sccache v0.12.0on Windows, but it fails with the following error:It seems that the
windows_syscrate cannot findCreateProcessWunderWin32::System::Threading. I suspect this might be due to either:windows-sysin Cargo.toml (e.g.,"Win32_System_Threading"), orwindows-sysAPI in recent versions.Environment:
Thanks for looking into this!