cross
"Zero setup" cross compilation and "cross testing" of Rust crates
`cross test`ing a crate for the aarch64-unknown-linux-gnu target
Disclaimer: Only works on a x86_64 Linux host (e.g. Travis CI is supported)
cross
will provide all the ingredients needed for cross compilation without
touching your system installation.
cross
provides an environment, cross toolchain and cross compiled libraries
(e.g. OpenSSL), that produces the most portable binaries.
"cross testing", cross
can test crates for architectures other than i686 and
x86_64.
The stable, beta and nightly channels are supported.
$ cargo install --git https://github.com/japaric/cross
cross
has the exact same CLI as Cargo
but as it relies on Docker you'll have to start the daemon before you can use
it.
```
$ sudo systemctl start docker
cross
can't generate .lock files itself (see caveats section)$ cargo generate-lockfile
$ cross build --target aarch64-unknown-linux-gnu
$ cross test --target mips64-unknown-linux-gnuabi64
$ cross rustc --target powerpc-unknown-linux-gnu --release -- -C lto ```
A target is considered as "supported" if cross
can cross compile a
"non-trivial" (binary) crate, usually Cargo, for that target.
Testing support is more complicated. It relies on QEMU user emulation, so
testing may sometimes fail due to QEMU bug sand not because there's a bug in the
crate. That being said, cross test
is assumed to "work" (test
column in the
table below) if it can successfully
run compiler-builtins
test suite.
Also, testing is very slow. cross
will actually run units tests sequentially
because QEMU gets upset when you spawn several threads. This also means that, if
one of your unit tests spawns several threads then it's more likely to fail or,
worst, "hang" (never terminate).
| Target | glibc | GCC | QEMU | OpenSSL | test
|
|--------------------------------------|-------|-------|-------|---------|:------:|
| aarch64-unknown-linux-gnu
| 2.19 | 4.8.2 | 2.8.0 | 1.0.2j | ✓ |
| armv7-unknown-linux-gnueabihf
| 2.15 | 4.6.2 | 2.8.0 | 1.0.2j | ✓ |
| i686-unknown-linux-gnu
| 2.15 | 4.6.2 | N/A | 1.0.2j | ✓ |
| mips-unknown-linux-gnu
(*) | 2.23 | 5.3.1 | 2.8.0 | 1.0.2j | ✓ |
| mips64-unknown-linux-gnuabi64
(*) | 2.23 | 5.3.1 | 2.8.0 | 1.0.2j | ✓ |
| mips64el-unknown-linux-gnuabi64
| 2.23 | 5.3.1 | 2.8.0 | 1.0.2j | ✓ |
| mipsel-unknown-linux-gnu
| 2.23 | 5.3.1 | 2.8.0 | 1.0.2j | ✓ |
| powerpc-unknown-linux-gnu
| 2.19 | 4.8.2 | 2.7.1 | 1.0.2j | ✓ |
| powerpc64-unknown-linux-gnu
(*) | 2.19 | 4.8.2 | 2.7.1 | 1.0.2j | ✓ |
| powerpc64le-unknown-linux-gnu
| 2.19 | 4.8.2 | 2.7.1 | 1.0.2j | ✓ |
| s390x-unknown-linux-gnu
| 2.23 | 5.3.1 | 2.8.0 | 1.0.2j | |
| x86_64-unknown-linux-gnu
| 2.15 | 4.6.2 | N/A | 1.0.2j | ✓ |
(*) For some reason behind my comprehension, the build script of the curl-sys
crate hangs when cross build
ing that crate for these three targets
(see issue #4).
cross
will mount the Cargo project as READ ONLY. Thus, if any crate attempts
to modify its "source", the build will fail. Well behaved crates should only
ever write to $OUT_DIR
and never modify $CARGO_MANIFEST_DIR
though.
cross
can't generate .lock files and you have to
manually call cargo generate-lockfile
.Versions 0.7.*
and older of the openssl
crate are NOT supported. cross
supports openssl
via the OPENSSL_DIR
"feature", which seems to have been
introduced in 0.8.*
. There's no work around, other than bumping the
openssl
dependency of the crates you are using.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.