summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2013-12-04 07:45:58 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2013-12-19 16:12:47 +0100
commite899e435ca92260de126a6090399af003923f31a (patch)
treef4c239b5b81953d292f72ba7827fef35890e6765
parent17661fc7fa31d8ba780ec5c96f5c1c358c7845f9 (diff)
downloadOSELAS.Toolchain-e899e435ca92260de126a6090399af003923f31a.tar.gz
OSELAS.Toolchain-e899e435ca92260de126a6090399af003923f31a.tar.xz
fixup_ptxconfigs.sh: add generic arm-v7a-linux-gnueabi toolchains
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rwxr-xr-xfixup_ptxconfigs.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/fixup_ptxconfigs.sh b/fixup_ptxconfigs.sh
index 75aff3a..42cca48 100755
--- a/fixup_ptxconfigs.sh
+++ b/fixup_ptxconfigs.sh
@@ -148,6 +148,16 @@ fixup()
;;
# softfp, neon
+ arm-v7a-linux-gnueabi)
+ PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=softfp --with-fpu=vfpv3-d16 --with-arch=armv7-a"
+ ;;
+
+ # hard, neon
+ arm-v7a-linux-gnueabihf)
+ PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=hard --with-fpu=vfpv3-d16 --with-arch=armv7-a"
+ ;;
+
+ # softfp, neon
arm-cortexa8-linux-gnueabi)
PTXCONF_CROSS_GCC_CONFIG_EXTRA="--with-float=softfp --with-fpu=neon --with-cpu=cortex-a8 --with-arch=armv7-a"
;;