272114cd05
This still isn't perfect. When the common/xbps-src/shutils/chroot.sh function chroot_init() is called, the value for $XBPS_FFLAGS, which is defined in common/build-profiles/bootstrap.sh, is empty. Put the immediate value into the generated /etc/xbps/xbps-src.conf file until someone finds out where passing the value of $XBPS_FFLAGS throughout the scripts is missing.
9 lines
303 B
Bash
9 lines
303 B
Bash
# Cross build profile for ARMv8.
|
|
|
|
XBPS_TARGET_MACHINE="aarch64"
|
|
XBPS_CROSS_TRIPLET="aarch64-linux-gnu"
|
|
XBPS_CFLAGS="-O2 -pipe" # XXX not yet supported: -fstack-protector-strong
|
|
XBPS_CXXFLAGS="$XBPS_CFLAGS"
|
|
XBPS_CROSS_CFLAGS="-march=armv8-a"
|
|
XBPS_CROSS_CXXFLAGS="$XBPS_CROSS_CFLAGS"
|
|
XBPS_CROSS_FFLAGS=""
|