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
Hey,
It seems like rust std will no longer link to shell32.dll, which is a dependency of pancurses (used through cursive for Windows support).
shell32.dll
= note: libpdcurses-b041d7947661b96d.rlib(pdcscrn.o) : error LNK2019: unresolved external symbol __imp_ExtractIconW referenced in function get_app_icon E:\work\repo\ncspot\target\debug\deps\ncspot-545a65ef205f4774.exe : fatal error LNK1120: 1 unresolved externals
Cursive and pancurses will need to be bumped once it has been fixed here: ihalila/pdcurses-sys#5
A temporary workaround is to add a build.rs in ncspot with the following in it for Windows users:
build.rs
fn main() { println!("cargo:rustc-link-lib=dylib=shell32"); }
The text was updated successfully, but these errors were encountered:
Related: rust-lang/rust#56568
Sorry, something went wrong.
Should be fixed if you run cargo update
cargo update
@udoprog can you confirm it is fixed?
I think so, but I can't test right now due to #38
@udoprog I have switched to directories, wanna give it another spin? :)
Yeah, fixed. Thanks!
Great, thanks for reporting!
No branches or pull requests
Hey,
It seems like rust std will no longer link to
shell32.dll
, which is a dependency of pancurses (used through cursive for Windows support).Cursive and pancurses will need to be bumped once it has been fixed here:
ihalila/pdcurses-sys#5
A temporary workaround is to add a
build.rs
in ncspot with the following in it for Windows users:The text was updated successfully, but these errors were encountered: