The purpose of this project is to start with minimum system dependencies and end with a fully operational Zig compiler for any target.
This repository copies sources from upstream. Patches listed below. Use git to find and inspect the patch diffs.
- LLVM, LLD, Clang release/13.x
- zlib 1.2.11
- Zig master branch (check the build script for the specific revision. It will be 0.9.0 when the release is tagged).
For other versions, check the git tags of this repository.
- Remove unused test/ files in order to make tarball less bloated.
- LLD: add additional include directory to Zig's libunwind.
- zlib: delete unused files
- zlib: CMakeLists.txt: delete the ability to build a shared library
- C++ compiler capable of building LLVM, Clang, and LLD from source (GCC 5.1+ or Clang)
- cmake 3.13.4 or later
- make
- POSIX system (bash, mkdir, cd)
- Python 3
build -j1 <arch>-<os>-<abi> baseline
All parameters are required:
-j1
: Replace with your jobs parameter to make.<arch>-<os>-<abi>
: Replace with one of the Supported Triples below, or usenative
for the<arch>
value (e.g.native-linux-gnu
) to use the native architecture.baseline
: Replace with a-mcpu
parameter of Zig.baseline
means it will target a generic CPU for the target.native
means it will target the native CPU. See the Zig documentation for more details.
If it succeeds, the output will be in out/zig-triple-mcpu/
.
To create the "Windows Compiler Devkit" run the package
script:
package
If you try a "not tested" one and find a problem please file an issue, and a pull request linking to the issue in the table.
If you try a "not tested" one and find that it works, please file a pull request changing the status to "OK".
If you try an "OK" one and it does not work, please check if there is an existing issue, and if not, file an issue.
Note: Generally, for Linux targets, we prefer the musl libc builds over the glibc builds here, because musl builds end up producing a static binary, which is more portable across Linux distributions.
triple | support status |
---|---|
aarch64_be-linux-gnu |
not tested |
aarch64_be-linux-musl |
not tested |
aarch64_be-windows-gnu |
not tested |
aarch64-linux-gnu |
OK |
aarch64-linux-musl |
OK |
aarch64-windows-gnu |
OK |
aarch64-macos-gnu |
OK |
armeb-linux-gnueabi |
not tested |
armeb-linux-gnueabihf |
not tested |
armeb-linux-musleabi |
not tested |
armeb-linux-musleabihf |
not tested |
armeb-windows-gnu |
not tested |
arm-linux-gnueabi |
not tested |
arm-linux-gnueabihf |
not tested |
arm-linux-musleabi |
OK |
arm-linux-musleabihf |
OK |
arm-windows-gnu |
not tested |
i386-linux-gnu |
not tested |
i386-linux-musl |
OK |
i386-windows-gnu |
OK |
mips64el-linux-gnuabi64 |
not tested |
mips64el-linux-gnuabin32 |
not tested |
mips64el-linux-musl |
#3 |
mips64-linux-gnuabi64 |
not tested |
mips64-linux-gnuabin32 |
not tested |
mips64-linux-musl |
not tested |
mipsel-linux-gnu |
not tested |
mipsel-linux-musl |
#12 |
mips-linux-gnu |
not tested |
mips-linux-musl |
not tested |
powerpc64le-linux-gnu |
#24 |
powerpc64le-linux-musl |
#5 |
powerpc64-linux-gnu |
not tested |
powerpc64-linux-musl |
not tested |
powerpc-linux-gnu |
not tested |
powerpc-linux-musl |
not tested |
riscv64-linux-gnu |
not tested |
riscv64-linux-musl |
OK |
s390x-linux-gnu |
not tested |
s390x-linux-musl |
#52 |
sparc-linux-gnu |
not tested |
sparcv9-linux-gnu |
ziglang/zig#4931 |
x86_64-freebsd-gnu |
#45 |
x86_64-linux-gnu |
OK |
x86_64-linux-gnux32 |
#20 |
x86_64-linux-musl |
OK |
x86_64-windows-gnu |
OK |
x86_64-macos-gnu |
OK |
arm-linux-musleabi
with mcpu value ofgeneric+v6kz
. This produces a build of Zig that runs on the RPi 1 and RPi Zero.- If you want to produce a build for this CPU exactly, use
arm1176jzf_s
.
- If you want to produce a build for this CPU exactly, use