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
In turns out that rpm-sequoia doesn't actually need compression support so I was able to workaround this issue by disabling that feature. But, this issue may trip up others.
The text was updated successfully, but these errors were encountered:
I develop
rpm-sequoia
, which is a Rust crate that implements rpm's OpenPGP API in terms of Sequoia PGP. (More details, unrelated to this issue, are described in this rpm issue).rpm-sequoia
should only export the rpm's PGP API. Unfortunately, a number of additional symbols are leaked by dependencies. Specifically, any symbols that have the#[no_mangle]
attribute appear to be exported.bzip2-sys
marksbz_internal_error
like this, and thus it is exported by the library:In turns out that
rpm-sequoia
doesn't actually need compression support so I was able to workaround this issue by disabling that feature. But, this issue may trip up others.The text was updated successfully, but these errors were encountered: