summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2013-11-28 20:50:29 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2013-12-19 16:12:46 +0100
commit56897e48155a4c372b1b95873c7037641a3a18e2 (patch)
tree217a9915651318834d1ca3af61f106fe073b5ed5
parent0ed05e7057558f2eae82380f564b6c34ab7bcc62 (diff)
downloadOSELAS.Toolchain-56897e48155a4c372b1b95873c7037641a3a18e2.tar.gz
OSELAS.Toolchain-56897e48155a4c372b1b95873c7037641a3a18e2.tar.xz
fixup_ptxconfigs.sh: remove obsolete variants
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rwxr-xr-xfixup_ptxconfigs.sh23
1 files changed, 1 insertions, 22 deletions
diff --git a/fixup_ptxconfigs.sh b/fixup_ptxconfigs.sh
index 8f49eab..e993b12 100755
--- a/fixup_ptxconfigs.sh
+++ b/fixup_ptxconfigs.sh
@@ -137,14 +137,6 @@ fixup()
# PTXCONF_GLIBC_CONFIG_EXTRA
#
case "${PTXCONF_GNU_TARGET}" in
- # hard, fpa
- arm-v4t_hardfloat-linux-gnu)
- PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=hard --with-fpu=fpa --with-arch=armv4t"
- ;;
- arm-xscale_hardfloat-linux-gnu)
- PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=hard --with-fpu=fpa --with-cpu=xscale"
- ;;
-
# softfp, vfp
arm-1136jfs-linux-gnueabi)
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=softfp --with-fpu=vfp --with-cpu=arm1136jf-s"
@@ -155,10 +147,6 @@ fixup()
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=hard --with-fpu=vfp --with-cpu=arm1136jf-s"
;;
- arm-v5te_vfp-linux-gnueabi)
- PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=softfp --with-fpu=vfp --with-cpu=arm926ej-s"
- ;;
-
# softfp, neon
arm-cortexa8-linux-gnueabi)
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=softfp --with-fpu=neon --with-cpu=cortex-a8"
@@ -180,15 +168,11 @@ fixup()
;;
# soft, vfp
- armeb-xscale-linux-gnueabi|armeb-xscale-linux-gnu)
- PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=soft --with-fpu=vfp --with-cpu=xscale"
- PTXCONF_GLIBC_CONFIG_EXTRA="--without-fp"
- ;;
arm-iwmmx-linux-gnueabi)
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=soft --with-fpu=vfp --with-cpu=iwmmxt"
PTXCONF_GLIBC_CONFIG_EXTRA="--without-fp"
;;
- arm-v4t-linux-gnueabi|arm-v4t-linux-gnu)
+ arm-v4t-linux-gnueabi)
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=soft --with-fpu=vfp --with-arch=armv4t"
PTXCONF_GLIBC_CONFIG_EXTRA="--without-fp"
;;
@@ -196,11 +180,6 @@ fixup()
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=soft --with-fpu=vfp --with-cpu=arm926ej-s"
PTXCONF_GLIBC_CONFIG_EXTRA="--without-fp"
;;
- arm-xscale-linux-gnueabi|arm-xscale-linux-gnu)
- PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=soft --with-fpu=vfp --with-cpu=xscale"
- PTXCONF_GLIBC_CONFIG_EXTRA="--without-fp"
- ;;
-
arm-cortexm3-uclinuxeabi)
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=soft --with-fpu=vfp --with-cpu=cortex-m3 --with-mode=thumb --disable-libgomp --disable-libitm"
;;