You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-sys crates often try to link to system libraries, and if not found will compile own private copy.
notable examples are libgit2-sys (uses unreleased ABI and will fail at runtime if tries to link to system library), but requires setting LIBGIT2_SYS_USE_PKG_CONFIG=1 to force looking for it. onig-sys, will try to link to system oniguruma if it's found, and will compile private version if not. prcre2-sys, will try system, and will compile own static if not found.
and more.
is it possible to modify cargo-ebuild to place a reminder if -sys crate is found in the depgraph? so users should check.
-sys crates often try to link to system libraries, and if not found will compile own private copy.
notable examples are
libgit2-sys
(uses unreleased ABI and will fail at runtime if tries to link to system library), but requires settingLIBGIT2_SYS_USE_PKG_CONFIG=1
to force looking for it.onig-sys
, will try to link to system oniguruma if it's found, and will compile private version if not.prcre2-sy
s, will try system, and will compile own static if not found.and more.
is it possible to modify cargo-ebuild to place a reminder if -sys crate is found in the depgraph? so users should check.
tracker bug in gentoo https://bugs.gentoo.org/709568
The text was updated successfully, but these errors were encountered: