configure.ac: don't use -msoft-float for arm64
authorLeif Lindholm <leif.lindholm@linaro.org>
Wed, 28 Jan 2015 20:17:18 +0000 (20:17 +0000)
committerLeif Lindholm <leif.lindholm@linaro.org>
Wed, 28 Jan 2015 20:44:41 +0000 (20:44 +0000)
aarch64 toolchains do not support the -msoft-float option added by
commit 3661261f. Insted, for arm64 use -march=armv8-a+nofp+nosimd.

Reported-by: Ryan Harkin <ryan.harkin@linaro.org>
configure.ac

index a3bca06..6d31ed0 100644 (file)
@@ -678,7 +678,11 @@ fi
 # that floats are a good fit to run instead of what's written in the code.
 # Given that floating point unit is disabled (if present to begin with)
 # when GRUB is running which may result in various hard crashes.
-TARGET_CFLAGS="$TARGET_CFLAGS -msoft-float"
+if test "x$target_cpu" = xarm64; then
+  TARGET_CFLAGS="$TARGET_CFLAGS -march=armv8-a+nofp+nosimd"
+else
+  TARGET_CFLAGS="$TARGET_CFLAGS -msoft-float"
+fi
 
 # By default, GCC 4.4 generates .eh_frame sections containing unwind
 # information in some cases where it previously did not. GRUB doesn't need