2008-01-16 22:06:15 +00:00
|
|
|
# Compute sh-specific values
|
|
|
|
|
2008-10-23 13:00:45 +00:00
|
|
|
CT_DoArchTupleValues () {
|
2008-01-16 22:06:15 +00:00
|
|
|
# The architecture part of the tuple:
|
2013-01-20 12:58:22 +00:00
|
|
|
CT_TARGET_ARCH="${CT_ARCH_SH_VARIANT}${CT_ARCH_SUFFIX:-${target_endian_eb}}"
|
2008-01-16 22:06:15 +00:00
|
|
|
|
|
|
|
# gcc ./configure flags
|
|
|
|
CT_ARCH_WITH_ARCH=
|
|
|
|
CT_ARCH_WITH_ABI=
|
|
|
|
CT_ARCH_WITH_CPU=
|
|
|
|
CT_ARCH_WITH_TUNE=
|
|
|
|
CT_ARCH_WITH_FPU=
|
|
|
|
CT_ARCH_WITH_FLOAT=
|
|
|
|
|
|
|
|
# Endianness stuff
|
2011-11-20 20:05:36 +00:00
|
|
|
case "${CT_ARCH_ENDIAN}" in
|
|
|
|
big) CT_ARCH_ENDIAN_CFLAG=-mb;;
|
|
|
|
little) CT_ARCH_ENDIAN_CFLAG=-ml;;
|
2008-01-16 22:06:15 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
# CFLAGS
|
2010-04-25 16:27:23 +00:00
|
|
|
case "${CT_ARCH_SH_VARIANT}" in
|
2008-01-16 22:06:15 +00:00
|
|
|
sh3) CT_ARCH_ARCH_CFLAG=-m3;;
|
|
|
|
sh4*)
|
2011-11-14 17:51:20 +00:00
|
|
|
# softfp is not possible for SuperH, no need to test for it.
|
|
|
|
case "${CT_ARCH_FLOAT}" in
|
|
|
|
hard)
|
|
|
|
CT_ARCH_ARCH_CFLAG="-m4${CT_ARCH_SH_VARIANT##sh?}"
|
|
|
|
;;
|
|
|
|
soft)
|
|
|
|
CT_ARCH_ARCH_CFLAG="-m4${CT_ARCH_SH_VARIANT##sh?}-nofpu"
|
|
|
|
;;
|
2008-01-16 22:06:15 +00:00
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
CT_ARCH_FLOAT_CFLAG=
|
|
|
|
}
|
2016-04-04 15:25:07 +00:00
|
|
|
|
2017-03-27 06:32:27 +00:00
|
|
|
CT_DoArchMultilibList() {
|
|
|
|
local save_ifs="${IFS}"
|
|
|
|
local new
|
|
|
|
local x
|
|
|
|
|
|
|
|
# In a configuration for SuperH, GCC list of multilibs shall not include
|
|
|
|
# the default CPU. E.g. if configuring for sh4-*-*, we need to remove
|
|
|
|
# "sh4" or "m4" from the multilib list. Otherwise, the resulting compiler
|
|
|
|
# will fail when that CPU is selected explicitly "sh4-multilib-linux-gnu-gcc -m4 ..."
|
|
|
|
# as it will fail to find the sysroot with that suffix.
|
|
|
|
IFS=,
|
|
|
|
for x in ${CT_CC_GCC_MULTILIB_LIST}; do
|
|
|
|
if [ "${x}" = "${CT_ARCH_SH_VARIANT}" -o "sh${x#m}" = "${CT_ARCH_SH_VARIANT}" ]; then
|
|
|
|
CT_DoLog WARN "Ignoring '${x}' in multilib list: it is the default multilib"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
new="${new:+${new},}${x}"
|
|
|
|
done
|
|
|
|
IFS="${save_ifs}"
|
|
|
|
CT_CC_GCC_MULTILIB_LIST="${new}"
|
|
|
|
CT_DoLog DEBUG "Adjusted CT_CC_GCC_MULTILIB_LIST to '${CT_CC_GCC_MULTILIB_LIST}'"
|
|
|
|
}
|
|
|
|
|
2016-04-04 15:25:07 +00:00
|
|
|
CT_DoArchUClibcConfig() {
|
|
|
|
local cfg="${1}"
|
|
|
|
|
|
|
|
# FIXME: uclibc (!ng) seems to support sh64 (sh5), too
|
|
|
|
CT_DoArchUClibcSelectArch "${cfg}" "sh"
|
|
|
|
CT_KconfigDisableOption "CONFIG_SH3" "${cfg}"
|
|
|
|
CT_KconfigDisableOption "CONFIG_SH4" "${cfg}"
|
|
|
|
CT_KconfigDisableOption "CONFIG_SH4A" "${cfg}"
|
2016-04-11 20:59:16 +00:00
|
|
|
case "${CT_ARCH_SH_VARIANT}" in
|
2016-04-04 15:25:07 +00:00
|
|
|
sh3) CT_KconfigEnableOption "CONFIG_SH3" "${cfg}";;
|
|
|
|
sh4) CT_KconfigEnableOption "CONFIG_SH4" "${cfg}";;
|
|
|
|
sh4a) CT_KconfigEnableOption "CONFIG_SH4A" "${cfg}";;
|
|
|
|
esac
|
|
|
|
}
|
2016-04-11 20:59:16 +00:00
|
|
|
|
|
|
|
CT_DoArchUClibcCflags() {
|
|
|
|
local cfg="${1}"
|
|
|
|
local cflags="${2}"
|
|
|
|
local f
|
|
|
|
|
|
|
|
for f in ${cflags}; do
|
|
|
|
case "${f}" in
|
|
|
|
-m3)
|
|
|
|
CT_KconfigEnableOption "CONFIG_SH3" "${cfg}"
|
|
|
|
;;
|
|
|
|
-m4)
|
|
|
|
CT_KconfigEnableOption "CONFIG_SH4" "${cfg}"
|
|
|
|
CT_KconfigEnableOption "UCLIBC_HAS_FPU" "${cfg}"
|
|
|
|
;;
|
|
|
|
-m4-nofpu)
|
|
|
|
CT_KconfigEnableOption "CONFIG_SH4" "${cfg}"
|
|
|
|
CT_KconfigDisableOption "UCLIBC_HAS_FPU" "${cfg}"
|
|
|
|
;;
|
|
|
|
-m4a)
|
|
|
|
CT_KconfigEnableOption "CONFIG_SH4A" "${cfg}"
|
|
|
|
CT_KconfigEnableOption "UCLIBC_HAS_FPU" "${cfg}"
|
|
|
|
;;
|
|
|
|
-m4a-nofpu)
|
|
|
|
CT_KconfigEnableOption "CONFIG_SH4A" "${cfg}"
|
|
|
|
CT_KconfigDisableOption "UCLIBC_HAS_FPU" "${cfg}"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
}
|