I am doing a simple cross compile test with cross-rs on various platforms. I can't get i686 targets to work with this crate at all.
cargo new test-mbedtls
My Cargo.toml file:
[package]
name = "test-mbedtls"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mbedtls = "0.11.0"
Hi there,
I am doing a simple cross compile test with cross-rs on various platforms. I can't get i686 targets to work with this crate at all.
My Cargo.toml file:
I'm using the cross-rs dockerfiles that I built located at since they are newer than the ones they have hosted on the internet at
ghcr.io/cross-rs
: https://github.com/cross-rs/cross/blob/main/docker/Dockerfile.i686-unknown-linux-gnu https://github.com/cross-rs/cross/blob/main/docker/Dockerfile.i686-unknown-linux-muslBuild with a command like this after cloning https://github.com/cross-rs repo:
My Cross.toml file to give it the packages it needs to build:
Both musl and gnu i686 targets give me the same error. Does this crate not support i686? Any plans for that? Errors below: