nushell/Cross.toml

10 lines
415 B
TOML

# Configuration for cross-rs: https://github.com/cross-rs/cross
# Run cross-rs like this:
# cross build --target i686-unknown-linux-musl --release --features=static-link-openssl
# NOTE: for musl you will need to build with --features=static-link-openssl
[target.i686-unknown-linux-musl]
pre-build = [
"dpkg --add-architecture i386",
"apt-get update && apt-get install --assume-yes libssl-dev:i386 clang"
]