151f876627
This adds the build profiles for ppc64 targets as well as modifications in other parts of the infra. These targets are supported: - ppc64le (glibc little endian elfv2) - ppc64le-musl (musl little endian) - ppc64-musl (musl big endian) ELFv1 targets are explicitly not supported at this point. Big endian musl supports ppc 970 or newer, while little endian targets are set to a generic powerpc64le which effectively means POWER8 and newer. Tuning is always set for POWER9, which is the most likely target hardware. We also make sure AltiVec is always on, because it is supported on all hardware we target. [ci skip]
9 lines
372 B
Bash
9 lines
372 B
Bash
# Cross build profile for ppc64 little-endian GNU.
|
|
|
|
XBPS_TARGET_MACHINE="ppc64le"
|
|
XBPS_CROSS_TRIPLET="powerpc64le-linux-gnu"
|
|
XBPS_CROSS_CFLAGS="-mcpu=powerpc64le -mtune=power9 -maltivec -mabi=elfv2"
|
|
XBPS_CROSS_CXXFLAGS="$XBPS_CROSS_CFLAGS"
|
|
XBPS_CROSS_FFLAGS=""
|
|
XBPS_CROSS_RUSTFLAGS="--sysroot=${XBPS_CROSS_BASE}/usr"
|
|
XBPS_CROSS_RUST_TARGET="powerpc64le-unknown-linux-gnu"
|