Crates.io | cargo-zigbuild |
lib.rs | cargo-zigbuild |
version | 0.19.4 |
source | src |
created_at | 2022-02-16 07:31:45.039668 |
updated_at | 2024-10-28 11:47:28.358121 |
description | Compile Cargo project with zig as linker |
homepage | |
repository | https://github.com/rust-cross/cargo-zigbuild |
max_upload_size | |
id | 533136 |
size | 164,495 |
🚀 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 a Docker image which has macOS SDK pre-installed in addition to cargo-zigbuild and Rust, for example to build for x86_64 macOS:
docker run --rm -it -v $(pwd):/io -w /io messense/cargo-zigbuild \
cargo zigbuild --release --target x86_64-apple-darwin
pip3 install ziglang
rustup target add aarch64-unknown-linux-gnu
cargo zigbuild
, for example, cargo zigbuild --target aarch64-unknown-linux-gnu
cargo zigbuild
supports passing glibc version in --target
option, for example,
to compile for glibc 2.17 with the aarch64-unknown-linux-gnu
target:
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)
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.
Known upstream zig issues:
-target
and -mcpu
/-march
/-mtune
flags according to clang:
Some Rust targets aren't recognized by zig cc
, for example armv7-unknown-linux-gnueabihf
, workaround by using -mcpu=generic
and
explicitly passing target features in #58SDKROOT
environment variable to a macOS SDK path to workaround itcompiler_rt
functions that may lead to undefined symbol error for certain
targets. See also: zig compiler-rt status.This work is released under the MIT license. A copy of the license is provided in the LICENSE file.