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
I have a minimal example at https://github.com/link2xt/openssl-cross-example
It is a binary which links against OpenSSL via openssl-sys which in turn depends on the C code of OpenSSL provided in openssl-src crate.
There is a build script scripts/build.sh in the repository which calls cargo-build.
The build fails with errors like this:
ld.lld: error: undefined symbol: __atomic_load
>>> referenced by bio_lib.c:689 (crypto/bio/bio_lib.c:689)
>>> bio_lib.o:(BIO_free_all) in archive ...
I have a minimal example at https://github.com/link2xt/openssl-cross-example
It is a binary which links against OpenSSL via
openssl-sys
which in turn depends on the C code of OpenSSL provided inopenssl-src
crate.There is a build script
scripts/build.sh
in the repository which callscargo-build
.The build fails with errors like this:
even though Zig should provide
__atomic_load
.The text was updated successfully, but these errors were encountered: