-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
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
pkg_config always adds system-wide path to rustc-link-search #49
Comments
Thanks for the report! I don't think the answer is to not print out |
If I understand
|
Ok seems like it just needs a PR then! |
Merged. |
Could we get
.print_system_libs(false)
added to the pkg_configConfig
? libz-sys is far down the dependency chain from my package and adds/usr/lib
to the search path. This means that the linker grabs another library we want to link against from/usr/lib
instead of our non-system search path that we add usingrustc-link-search
.This is the same basic issue as sfackler/rust-openssl#447 and rust-lang/pkg-config-rs#11
Thanks!
The text was updated successfully, but these errors were encountered: