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
473 B
Bash
13 lines
473 B
Bash
# Cross build profile for MIPS32 BE soft float.
|
|
|
|
XBPS_TARGET_MACHINE="mips-musl"
|
|
XBPS_TARGET_QEMU_MACHINE="mips"
|
|
XBPS_CROSS_TRIPLET="mips-linux-musl"
|
|
XBPS_CROSS_CFLAGS="-mtune=mips32r2 -mabi=32 -msoft-float"
|
|
XBPS_CROSS_CXXFLAGS="$XBPS_CROSS_CFLAGS"
|
|
XBPS_CROSS_FFLAGS="$XBPS_CROSS_CFLAGS"
|
|
XBPS_CROSS_RUSTFLAGS="--sysroot=${XBPS_CROSS_BASE}/usr"
|
|
XBPS_CROSS_RUST_TARGET="mips-unknown-linux-musl"
|
|
XBPS_CROSS_ZIG_TARGET="mips-linux-musl"
|
|
XBPS_CROSS_ZIG_CPU="generic+soft_float"
|