-
Notifications
You must be signed in to change notification settings - Fork 379
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
Build Failed: openssl-sys #400
Comments
Ok catching up and now seeing Issue #229. |
Ok closing this issue as it seems that this project no longer wants to support openssl. For anyone that lands here, take a look at #229 and for a work around look at: #229 (comment) Hopefully, there will be some longer-term ability to cross-compile projects that need openssl. |
I also came across this problem when I tried to build for armv7. I used this guide as starting point and had to add |
This is also documented on our wiki: https://github.com/cross-rs/cross/wiki/Recipes#openssl |
Thanks for the hint, I did not find that page before. |
For people trying to use the vendored way I ended with: [dependencies]
...
openssl = { version = '*', features = ["vendored"] }
[build-dependencies]
openssl = { version = '*', features = ["vendored"] } |
Not sure what I am doing wrong, but I can't get
cross
to work withopenssl-sys
crate.I have tried both
aarch64-unknown-linux-gnu
andaarch64-unknown-linux-musl
Any suggestions?
The text was updated successfully, but these errors were encountered: