You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/profiles/features/32bit-userland/profile.bashrc

10 lines
276 B

# Here we remove any ABI that isn't 32-bit.
case ${PROFILE_ARCH} in
mips64)
# This is for o32 (64-bit kernel, 32-bit userland) so we force -mabi=32
export CHOST="mips-unknown-linux-gnu"
export CFLAGS="${CFLAGS/-mabi=*/-mabi=32}"
export CXXFLAGS="${CFLAGS}"
;;
esac