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
I am building a project which uses rust-lzma in "static" mode:
rust-lzma
https://github.com/crazystylus/otadump
On Fedora 40, it errors with:
error: could not find native static library `lzma`, perhaps an -L flag is missing? error: could not compile `rust-lzma` (lib) due to 1 previous error
I changed the rust-lzma line to remove the "features: static":
rust-lzma = "0.6.0"
Now it builds.
I am guessing the issue is something small, but I can't spot the error in the pull request which added static linking.
Related pull request: #29
The text was updated successfully, but these errors were encountered:
That's because you need to install xz-static. The statically linked lib is different from the (default) dynamically linked one.
Sorry, something went wrong.
No branches or pull requests
I am building a project which uses
rust-lzma
in "static" mode:https://github.com/crazystylus/otadump
On Fedora 40, it errors with:
I changed the
rust-lzma
line to remove the "features: static":rust-lzma = "0.6.0"
Now it builds.
I am guessing the issue is something small, but I can't spot the error in the pull request which added static linking.
Related pull request: #29
The text was updated successfully, but these errors were encountered: