summaryrefslogtreecommitdiff
path: root/scripts/build/arch/powerpc.sh
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2016-05-21 20:16:52 (GMT)
committerAlexey Neyman <stilor@att.net>2016-06-10 00:12:49 (GMT)
commit34ecc718d9d2ea7d391056733d004c68fe7e4bf3 (patch)
tree312159cd14779d1ce3acc8fe7d950ded71ec2e5e /scripts/build/arch/powerpc.sh
parentaa30d0bc4fdf6480a5a24c69e5537f8c41011470 (diff)
arch/all: Add common function to return multilib target
This code was abstracted out of Cody P Schafer's multilib patch. It doesn't seem right having architecture dependent code in a specific libc implementation script. So this patch breaks it out into scripts/build/arch/<arch>.sh in a function: multilib_target_to_build="$(CT_DoArchMultilibTarget 'multi_flags' 'target-in')" Note that this function gets called on each multilib variant with different sets of compiler flags supplied in 'multi_flags'. The caller will first filter the flags so that there is no conflicting flags (e.g., no '-m32 -m64') supplied. Changed by Alexey Neyman: - make option analysis check specific option rather than match global options string as a whole. Moreover, old code did not handle multiple options in the same multilib, e.g. '-m64 -mlittle'. - fixed substitutions in powerpc.sh (*le variants did not match the pattern in the shell parameter expansion) - make s390.sh actually apply the flags it gathered from the options. - straighten the spaghetti in x86.sh by setting two flags, arch & abi. Also, do not depend on "gnu" being the last part - we can have '*-uclibcx32', for example. Signed-off-by: Bryan Hundven <bryanhundven@gmail.com> Signed-off-by: Ray Donnelly <ray.donnelly@gmail.com> Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/arch/powerpc.sh')
-rw-r--r--scripts/build/arch/powerpc.sh41
1 files changed, 41 insertions, 0 deletions
diff --git a/scripts/build/arch/powerpc.sh b/scripts/build/arch/powerpc.sh
index fbc3120..77bbc8a 100644
--- a/scripts/build/arch/powerpc.sh
+++ b/scripts/build/arch/powerpc.sh
@@ -26,3 +26,44 @@ CT_DoArchTupleValues () {
CT_ARCH_CC_EXTRA_CONFIG="--enable-e500_double"
fi
}
+#------------------------------------------------------------------------------
+# Get multilib architecture-specific target
+# Usage: CT_DoArchMultilibTarget "multilib flags" "target tuple"
+CT_DoArchMultilibTarget ()
+{
+ local target="${1}"; shift
+ local -a multi_flags=( "$@" )
+
+ local m32=false
+ local m64=false
+ local mlittle=false
+ local mbig=false
+
+ for m in "${multi_flags[@]}"; do
+ case "$m" in
+ -m32) m32=true ;;
+ -m64) m64=true ;;
+ -mbig) mbig=true ;;
+ -mlittle) mlittle=true ;;
+ esac
+ done
+
+ # Fix up bitness
+ case "${target}" in
+ powerpc-*) $m64 && target=${target/#powerpc-/powerpc64-} ;;
+ powerpcle-*) $m64 && target=${target/#powerpcle-/powerpc64le-} ;;
+ powerpc64-*) $m32 && target=${target/#powerpc64-/powerpc-} ;;
+ powerpc64le-*) $m32 && target=${target/#powerpc64le-/powerpcle-} ;;
+ esac
+
+ # Fix up endianness
+ case "${target}" in
+ powerpc-*) $mlittle && target=${target/#powerpc-/powerpcle-} ;;
+ powerpcle-*) $mbig && target=${target/#powerpcle-/powerpc-} ;;
+ powerpc64-*) $mlittle && target=${target/#powerpc64-/powerpc64le-} ;;
+ powerpc64le-*) $mbig && target=${target/#powerpc64le-/powerpc64-} ;;
+ esac
+
+ # return the target
+ echo "${target}"
+}