2011-04-03 16:22:00 +00:00
|
|
|
# Compute sparc-specific values
|
|
|
|
CT_DoArchTupleValues() {
|
|
|
|
# That's the only thing to override
|
2014-05-11 22:09:31 +00:00
|
|
|
CT_TARGET_ARCH="sparc${target_bits_64}${CT_ARCH_SUFFIX}"
|
2016-03-31 01:42:30 +00:00
|
|
|
|
|
|
|
# By default, sparc64-*-linux is configured with -mcpu=v9. However,
|
|
|
|
# according to https://sourceware.org/ml/libc-alpha/2005-12/msg00027.html,
|
|
|
|
# "There is no Linux sparc64 port that runs on non-UltraSPARC-I+ ISA CPUs."
|
|
|
|
# There is a patch that would change the default to -mcpu=ultrasparc for
|
|
|
|
# sparc64-*-linux configuration: https://patchwork.ozlabs.org/patch/409424/
|
|
|
|
# but that patch has not been integrated (yet). One concern raised about
|
|
|
|
# this patch was that -mcpu=ultrasparc can suboptimally schedule instructions
|
|
|
|
# for newer SPARC CPUs. So, override to -mcpu=ultrasparc and warn the user.
|
|
|
|
if [ "${CT_KERNEL}" = "linux" -a "${CT_ARCH_64}" = "y" -a -z "${CT_ARCH_CPU}" ]; then
|
|
|
|
CT_DoLog WARN "Setting CPU to UltraSPARC-I for sparc64-linux. Set CT_ARCH_CPU if a different CPU is desired."
|
|
|
|
CT_ARCH_WITH_CPU="--with-cpu=ultrasparc"
|
|
|
|
fi
|
2011-04-03 16:22:00 +00:00
|
|
|
}
|
2016-05-21 20:16:52 +00:00
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Get multilib architecture-specific target
|
2016-04-03 17:26:24 +00:00
|
|
|
# Usage: CT_DoArchMultilibTarget "target variable" "multilib flags"
|
2016-05-21 20:16:52 +00:00
|
|
|
CT_DoArchMultilibTarget ()
|
|
|
|
{
|
2016-04-03 17:26:24 +00:00
|
|
|
local target_var="${1}"; shift
|
2016-05-21 20:16:52 +00:00
|
|
|
local -a multi_flags=( "$@" )
|
2016-04-03 17:26:24 +00:00
|
|
|
local target_
|
2016-05-21 20:16:52 +00:00
|
|
|
|
2016-04-02 07:12:41 +00:00
|
|
|
local m32=false
|
|
|
|
local m64=false
|
|
|
|
|
|
|
|
for m in "${multi_flags[@]}"; do
|
|
|
|
case "$m" in
|
|
|
|
-m32) m32=true ;;
|
|
|
|
-m64) m64=true ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2016-04-03 17:26:24 +00:00
|
|
|
eval target_=\"\${${target_var}}\"
|
|
|
|
|
2016-04-02 07:12:41 +00:00
|
|
|
# Fix up bitness
|
2016-04-03 17:26:24 +00:00
|
|
|
case "${target_}" in
|
|
|
|
sparc-*) $m64 && target_=${target_/#sparc-/sparc64-} ;;
|
|
|
|
sparc64-*) $m32 && target_=${target_/#sparc64-/sparc-} ;;
|
2016-04-02 07:12:41 +00:00
|
|
|
esac
|
|
|
|
|
2016-04-03 17:26:24 +00:00
|
|
|
# Set the target variable
|
|
|
|
eval ${target_var}=\"${target_}\"
|
2016-04-02 07:12:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Special tuple adjustment for glibc.
|
|
|
|
CT_DoArchGlibcAdjustTuple() {
|
2016-04-03 17:26:24 +00:00
|
|
|
local target_var="${1}"
|
|
|
|
local target_
|
|
|
|
|
|
|
|
eval target_=\"\${${target_var}}\"
|
2016-04-02 07:12:41 +00:00
|
|
|
|
2016-04-03 17:26:24 +00:00
|
|
|
case "${target_}" in
|
2016-04-02 07:12:41 +00:00
|
|
|
# SPARC quirk: glibc 2.23 and newer dropped support for SPARCv8 and
|
|
|
|
# earlier (corresponding pthread barrier code is missing). Until this
|
|
|
|
# support is reintroduced, configure as sparcv9.
|
|
|
|
sparc-*)
|
|
|
|
if [ "${CT_LIBC_GLIBC_2_23_or_later}" = y ]; then
|
2016-04-03 17:26:24 +00:00
|
|
|
CT_DoLog WARN "GLIBC 2.23 only supports SPARCv9"
|
|
|
|
target_=${target_/#sparc-/sparcv9-}
|
2016-04-02 07:12:41 +00:00
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2016-04-03 17:26:24 +00:00
|
|
|
# Set the target variable
|
|
|
|
eval ${target_var}=\"${target_}\"
|
2016-05-21 20:16:52 +00:00
|
|
|
}
|