We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cc::windows_registry::find_tool
Way to reproduce
let tool = cc::windows_registry::find_tool("x86_64-msvc", "cl.exe").unwrap();
cc-1.1.31 and older work. cc-1.1.32 and newer panic because find_tool returns None.
find_tool
None
Can both repro on my own machine and on GitHub Actions.
Maybe I am using find_tool the wrong way and need to pass different arguments?
The text was updated successfully, but these errors were encountered:
Add temporary workaround for cc bug to fix the build
65879a3
See rust-lang/cc-rs#1281
x86_64-msvc is not a valid rust target.
I'd recommend changing it to x86_64-pc-windows-msvc
Sorry, something went wrong.
Thanks, using x86_64-pc-windows-msvc fixed things for me
x86_64-pc-windows-msvc
No branches or pull requests
Way to reproduce
let tool = cc::windows_registry::find_tool("x86_64-msvc", "cl.exe").unwrap();
cc-1.1.31 and older work.
cc-1.1.32 and newer panic because
find_tool
returnsNone
.Can both repro on my own machine and on GitHub Actions.
Maybe I am using
find_tool
the wrong way and need to pass different arguments?The text was updated successfully, but these errors were encountered: