🚀 Help me to become a full-time open-source developer by sponsoring me on GitHub
Compile Cargo project with zig as linker for easier cross compiling.
cargo install --locked cargo-zigbuild
You can also install it using pip which will also install ziglang
automatically:
pip install cargo-zigbuild
We also provide Docker images which has macOS SDK pre-installed in addition to cargo-zigbuild and Rust, for example to build for x86_64 macOS:
- Linux docker image (ghcr.io, Docker Hub):
docker run --rm -it -v $(pwd):/io -w /io ghcr.io/rust-cross/cargo-zigbuild \
cargo zigbuild --release --target x86_64-apple-darwin
- Install zig following the official documentation,
on macOS, Windows and Linux you can also install zig from PyPI via
pip3 install ziglang
- Install Rust target via rustup, for example,
rustup target add aarch64-unknown-linux-gnu
- Run
cargo zigbuild
, for example,cargo zigbuild --target aarch64-unknown-linux-gnu
By default --target
for *-gnu
will have Zig implicitly build for a default version of glibc that varies based on the release of Zig (v12 to v14 releases default to glibc 2.28).
To build for a specific minimum glibc version, add that version as a suffix to the --target
value. For example, to compile with --target aarch64-unknown-linux-gnu
for glibc 2.17:
cargo zigbuild --target aarch64-unknown-linux-gnu.2.17
Note
There are various caveats with the glibc version targeting feature:
- If you do not provide a
--target
, Zig is not used and the command effectively runs a regularcargo build
. - If you specify an invalid glibc version,
cargo zigbuild
will not relay the warning emitted fromzig cc
about the fallback version selected. - This feature does not necessarily match the behaviour of dynamically linking to a specific version of glibc on the build host.
- Version 2.32 can be specified, but runs on a host with only 2.31 available when it should instead abort with an error.
- Meanwhile specifying 2.33 will correctly be detected as incompatible when run on a host with glibc 2.31.
- Certain
RUSTFLAGS
like-C linker
opt-out of using Zig, while-L path/to/files
will have Zig ignore-C target-feature=+crt-static
. -C target-feature=+crt-static
for statically linking to a glibc version is not supported (upstreamzig cc
lacks support)
You may need to prepend the following ENV to your cargo zigbuild
command with the following system paths or similar:
CFLAGS='-isystem /usr/include'
RUSTFLAGS='-L /usr/lib64'
cargo zigbuild
always uses the zig cc
option -nostdinc
which excludes standard header locations like /usr/include
. This is also a default behaviour for Zig whenever it is configured with a --target
, which additionally opts out of standard system search paths.
This can lead to a common difference between cargo build
being successful, while cargo zigbuild
fails without extra configuration:
# Cannot find a header file to build:
fatal error: 'libelf.h' file not found
# Cannot find a shared library to link:
error: unable to find dynamic system library 'elf' using strategy 'no_fallback'. searched paths
There is a variety of ways to resolve this, but for system paths like /usr/include
you must be careful to avoid getting the system glibc headers mixed with the glibc headers Zig provides itself, otherwise this will produce errors like from CPATH=/usr/include
:
In file included from /usr/local/lib64/python3.13/site-packages/ziglang/lib/libunwind/src/gcc_personality_v0.c:21:
In file included from /usr/local/lib64/python3.13/site-packages/ziglang/lib/libunwind/include/unwind.h:18:
In file included from /usr/include/stdint.h:26:
In file included from /usr/include/bits/libc-header-start.h:33:
/usr/include/features.h:516:9: warning: '__GLIBC_MINOR__' macro redefined [-Wmacro-redefined]
516 | #define __GLIBC_MINOR__ 41
| ^
<command line>:2:9: note: previous definition is here
2 | #define __GLIBC_MINOR__ 37
|
When you have installed system packages that added headers to /usr/include
that your project needs to build, you will want Zig to fallback to /usr/include
just for those headers while using it's own for glibc. This can be done with zig cc -isystem /usr/include
, which for cargo zigbuild
can be configured through the common ENV CFLAGS='-isystem /usr/include'
.
For the similar issue with shared libraries, if your packages are installing system libraries at /usr/lib64
you would normally use LDFLAGS='-L /usr/lib64'
, but rustc
and cargo
do not read this ENV but they must be configured with the search path for crates with a build.rs
that searches for a library to link dynamically/statically. Instead you will need to use RUSTFLAGS='-L /usr/lib64'
.
Provided you have no stripped the symbols from your binary built, on Linux you can run the following script to scan for glibc versioned symbols and find the highest version (the minimum required to run)
-
Create a file
/usr/local/bin/get-min-glibc
:#!/bin/bash FILE_NAME=$1 readelf -W --version-info --dyn-syms ${FILE_NAME} \ | grep 'Name: GLIBC' \ | sed -re 's/.*GLIBC_(.+) Flags.*/\1/g' \ | sort -t . -k1,1n -k2,2n \ | tail -n 1
-
Make the script command executable:
chmod +x /usr/local/bin/get-min-glibc
-
Run the command with the path to your executable / library to check:
$ get-min-glibc target/x86_64-unknown-linux-gnu/release/hello-world 2.28
cargo zigbuild
supports a special universal2-apple-darwin
target for building macOS universal2 binaries/libraries on Rust 1.64.0 and later.
rustup target add x86_64-apple-darwin
rustup target add aarch64-apple-darwin
cargo zigbuild --target universal2-apple-darwin
Note
Note that Cargo
--message-format
option doesn't work with universal2 target currently.
- Currently only Linux and macOS targets are supported, other target platforms can be added if you can make it work, pull requests are welcome.
- Only current Rust stable and nightly versions are regularly tested on CI, other versions may not work.
Known upstream zig issues:
- zig cc: parse
-target
and-mcpu
/-march
/-mtune
flags according to clang: Some Rust targets aren't recognized byzig cc
, for examplearmv7-unknown-linux-gnueabihf
, workaround by using-mcpu=generic
and explicitly passing target features in #58 - ability to link against darwin frameworks (such as CoreFoundation) when cross compiling:
Set the
SDKROOT
environment variable to a macOS SDK path to workaround it - zig misses some
compiler_rt
functions that may lead to undefined symbol error for certain targets. See also: zig compiler-rt status. - CPU features are not passed to clang
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.