020e1aa54b
We call this "zig-build" instead of just "zig" as this build-style relies on usage of the zig build system. In the future, other build systems such as meson may support zig code. Furthermore, the zig build system may be used to build C/C++ code as well, not just zig.
13 lines
432 B
Bash
13 lines
432 B
Bash
# Cross build profile for x86_64 GNU.
|
|
|
|
XBPS_TARGET_MACHINE="x86_64"
|
|
XBPS_TARGET_QEMU_MACHINE="x86_64"
|
|
XBPS_CROSS_TRIPLET="x86_64-linux-gnu"
|
|
XBPS_CROSS_CFLAGS="-mtune=generic"
|
|
XBPS_CROSS_CXXFLAGS="$XBPS_CROSS_CFLAGS"
|
|
XBPS_CROSS_FFLAGS="$XBPS_CROSS_CFLAGS"
|
|
XBPS_CROSS_RUSTFLAGS="--sysroot=${XBPS_CROSS_BASE}/usr"
|
|
XBPS_CROSS_RUST_TARGET="x86_64-unknown-linux-gnu"
|
|
XBPS_CROSS_ZIG_TARGET="x86_64-linux-gnu"
|
|
XBPS_CROSS_ZIG_CPU="baseline"
|