2008-05-18 20:50:13 +00:00
|
|
|
# Compute powerpc-specific values
|
|
|
|
|
2009-11-17 10:33:59 +00:00
|
|
|
CT_DoArchTupleValues () {
|
2014-05-11 22:02:13 +00:00
|
|
|
# The architecture part of the tuple
|
|
|
|
CT_TARGET_ARCH="powerpc${target_bits_64}${target_endian_le}${CT_ARCH_SUFFIX}"
|
2009-11-17 10:33:59 +00:00
|
|
|
|
2011-10-16 15:52:33 +00:00
|
|
|
# Only override values when ABI is not the default
|
2011-09-17 12:30:52 +00:00
|
|
|
case "${CT_ARCH_powerpc_ABI}" in
|
2011-10-16 15:52:33 +00:00
|
|
|
eabi)
|
|
|
|
# EABI is only for bare-metal, so libc ∈ [none,newlib]
|
|
|
|
CT_TARGET_SYS="eabi"
|
|
|
|
;;
|
2011-09-17 12:30:52 +00:00
|
|
|
spe)
|
|
|
|
case "${CT_LIBC}" in
|
2011-10-16 15:52:33 +00:00
|
|
|
none|newlib) CT_TARGET_SYS="spe";;
|
|
|
|
*glibc) CT_TARGET_SYS="gnuspe";;
|
|
|
|
uClibc) CT_TARGET_SYS="uclibcgnuspe";;
|
2011-09-17 12:30:52 +00:00
|
|
|
esac
|
|
|
|
;;
|
2009-11-17 10:33:59 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
# Add extra flags for SPE if needed
|
2011-09-17 12:30:52 +00:00
|
|
|
if [ "${CT_ARCH_powerpc_ABI_SPE}" = "y" ]; then
|
2009-11-17 10:33:59 +00:00
|
|
|
CT_ARCH_TARGET_CFLAGS="-mabi=spe -mspe"
|
|
|
|
CT_ARCH_CC_CORE_EXTRA_CONFIG="--enable-e500_double"
|
|
|
|
CT_ARCH_CC_EXTRA_CONFIG="--enable-e500_double"
|
|
|
|
fi
|
|
|
|
}
|