changeset 3133:0ef5e61b1b00

Fixed compilation failure on Aarch64.
author Pavel Tisnovsky <ptisnovs@redhat.com>
date Mon, 24 Mar 2014 16:53:24 -0400
parents 9ace699eb46a
children 03d11116ab06
files ChangeLog contrib/jck/compile-native-code.sh
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Thu Mar 20 02:06:20 2014 +0000
+++ b/ChangeLog	Mon Mar 24 16:53:24 2014 -0400
@@ -1,3 +1,8 @@
+2014-03-24  Pavel Tisnovsky  <ptisnovs@redhat.com>
+
+	* contrib/jck/compile-native-code.sh:
+	Fixed compilation failure on Aarch64.
+
 2012-08-16  Andrew John Hughes  <gnu_andrew@member.fsf.org>
 
 	PR1712: Allow -Werror to be turned off in the
--- a/contrib/jck/compile-native-code.sh	Thu Mar 20 02:06:20 2014 +0000
+++ b/contrib/jck/compile-native-code.sh	Mon Mar 24 16:53:24 2014 -0400
@@ -31,6 +31,9 @@
   x86_64|ppc64|s390x)
     MFLAG=-m64
     ;;
+  aarch64)
+    MFLAG=-march=armv8-a
+    ;;
   *)
     echo 1>&2 "error: unhandled arch '$arch'"
     exit 1