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
Hi, any idea what the problem could be?
The project is using attohttpc as a dependency, but it looks like the error is from this library.
$ cargo build --target wasm32-wasi --release error: linking with `rust-lld` failed: exit status: 1 ... = note: rust-lld: error: unable to find library -lssl rust-lld: error: unable to find library -lcrypto
.cargo.toml
OPENSSL_DIR = "/usr" OPENSSL_LIB_DIR ="/usr/lib" OPENSSL_INCLUDE_DIR ="/usr/include"
I have checked: pkg-config --libs --cflags openssl and it prints -lssl -lcrypto
pkg-config --libs --cflags openssl
-lssl -lcrypto
The text was updated successfully, but these errors were encountered:
Do you have a copy of OpenSSL built for WASM in /usr/lib?
Sorry, something went wrong.
No, I don't have it. I guess that I'm doing it wrong
You're going to need that to be able to use this library. I'm not sure what the status of building OpenSSL for WASM is - see #1016.
Thanks for the support!
No branches or pull requests
Hi, any idea what the problem could be?
The project is using attohttpc as a dependency, but it looks like the error is from this library.
.cargo.toml
I have checked:
pkg-config --libs --cflags openssl
and it prints-lssl -lcrypto
The text was updated successfully, but these errors were encountered: