Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
This crate provides low level rust bindings for s2n-tls which are autogenerated with bindgen
This crate is not intended for direct consumption by end consumers. Interested developers should instead look at the s2n-tls or s2n-tls-tokio crates. These provide higher-level, more ergonomic bindings than the s2n-tls-sys crate.
The s2n-tls-sys bindings crate contains the raw C code of s2n-tls. By default, it follows this build process:
- Use the system C compiler to build
libs2n.a - Link the built
libs2n.ato the Rust bindings - Link against
aws-lcthrough theaws-lc-rscrate
Bring your own libs2n with s2n-tls-sys crate
You can customize above build process to use your own pre-built libs2n. This is useful if you want the bindings to be built with a non-default libcrypto. Currently, the default libcrypto when generating rust bindings is aws-lc. Here's how you can do that:
- Clone s2n-tls and compile your preferred configuration of s2n-tls.
You may choose to link against a specific libcrypto at this step. For more information, see Building with a specific libcrypto. Also see Building s2n-tls for further guidance on configuring s2n-tls for your own use case.
cdinto your rust project and set environment variables to your libs2n artifacts.
This tells the bindings to link to pre-built libs2n when running the build script for s2n-tls-sys
export S2N_TLS_LIB_DIR=<PATH_TO_ROOT_OF_S2N_TLS>/build/lib
export S2N_TLS_INCLUDE_DIR=<PATH_TO_ROOT_OF_S2N_TLS>/api
export LD_LIBRARY_PATH=$S2N_TLS_LIB_DIR:$LD_LIBRARY_PATH
S2N_TLS_LIB_DIR points to the folder containing libs2n.a/libs2n.so artifact that you would like s2n-tls-sys to link against.
S2N_TLS_INCLUDE_DIR points to the folder containing header files for libs2n.a/libs2n.so artifact.
LD_LIBRARY_PATH adds the path to libs2n.a/libs2n.so artifact for dynamic linker's search path.
- Build your project. This triggers the build script for s2n-tls-sys
cargo build
Performance note: Rust ≥ 1.90, LTO, and the linker
s2n-tls-sys's build script compiles the vendored libs2n C code with link-time optimization (LTO) in release/optimized builds. The two compilers emit different kinds of LTO objects, and the linkers consume them differently:
- GCC emits fat-LTO objects (GIMPLE + native code). GNU
bfdperforms LTO on them; other linkers (includingrust-lld) ignore the LTO and link the embedded native code — the link succeeds, just without LTO. - Clang emits LLVM bitcode.
rust-lldconsumes it, but a plain GNUldcannot and the link fails with "File format not recognized" (this is why an earlier change, #3968, restricted LTO to GCC).
Starting with Rust 1.90, the default linker on x86_64-unknown-linux-gnu switched from GNU bfd to rust-lld. Since rust-lld can't consume GCC's fat-LTO objects, a GCC build on that target silently drops the LTO pass, costing ~17-22 µs per TLS handshake (~2-4%).
What the build script does automatically
The build script picks the LTO approach based on the linker:
- When
rust-lldis the linker (the default onx86_64-unknown-linux-gnu, Rust ≥ 1.90): it prefers Clang — ifCCis unset andclangis onPATH, it compileslibs2nwith Clang sorust-lldcan perform LTO. Installingclangis all most consumers need to do. - Otherwise (GNU
bfd, macOSld, aarch64, etc.): it uses GCC fat-LTO objects, which link with any linker. Clang bitcode LTO is deliberately not enabled here, to avoid the GNUldlink failure above.
If you must use GCC on Rust ≥ 1.90
If the build falls back to GCC on x86_64-unknown-linux-gnu with Rust ≥ 1.90, the build script emits a cargo:warning because LTO will be silently dropped. To restore LTO you have two options:
-
Install
clang(recommended) and the build script will pick it up automatically, no flags needed. -
Opt out of
rust-lldso the GNUbfdlinker is used, which can consume GCC's fat-LTO objects:RUSTFLAGS="-Clinker-features=-lld"Or in
.cargo/config.toml:[] = ["-Clinker-features=-lld"]
Consumers on aarch64 or non-Linux targets are unaffected because only x86_64-unknown-linux-gnu has the rust-lld default.