A setuptools extension for compiling native extensions with Zig.
st_zig is a lightweight standalone package that enables setuptools to use
Zig as a C/C++ compiler. By leveraging the standalone
ziglang package, which is available for all
PyPI-supported target platforms, this tool allows native extensions to be
compiled directly on user devices.
This approach eliminates the need for users to install additional build tools, simplifying the setup process. Additionally, it removes the complexity of managing platform-specific compiler flags, particularly on Windows.
To use this package, simply add it as build requirement to your project.
The easier option to use is directly using st_zig.build_meta as build backend,
which is a proxy to setuptools.build_meta and simply uses
st_zig.enforce_via_build_ext during the import.
pyproject.toml
[build-system]
requires = ["st_zig"]
build-backend = "st_zig.build_meta"Alternatively enforce_via_build_ext or enforce_via_env can be used.
st_zig.enforce_via_build_ext patches build_ext so that it picks
st_zig.ZigCompiler. st_zig.enforce_via_env modifies the sysconfig read by
python to make the UnixCompiler use zig, this doesn't seem to work on Windows
anymore though. The UnixCompiler class, while primarily designed for Unix-like
systems, works seamlessly on Windows as well. This is because Zig includes a
bundled version of Clang, which ensures compatibility with Unix-style compiler
flags across all platforms, including Windows.
Mind that the UnixCompiler class just describes unix focussed compilers like
gcc and clang, it also works just fine on Windows. As Zig basically ships clang,
you can use the same clang unix flags on all systems.
setup.py
from setuptools import Extension, setup
# Add the following to your setup.py to enable Zig as the compiler
from st_zig import enforce_via_build_ext
enforce_via_build_ext()
setup(
name="testc",
ext_modules=[
Extension(
"testc",
["test.cpp"],
language="c++",
# Adjust the compile arguments based on your project's requirements
extra_compile_args=["-std=c++23"],
), # Note: The above example uses C++23. Modify the flag as needed for your project.
],
)pyproject.toml
[build-system]
requires = ["setuptools", "st_zig"]
build-backend = "setuptools.build_meta"
# Add any additional configuration options below as needed
...