diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-10-27 15:24:05 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-10-27 15:24:05 +0100 |
commit | 7bb2bcecda471a0d514a964365a78150f3ee5747 (patch) | |
tree | 7ad860235449a337dc228910c10f3c74b88de863 /m4 | |
parent | af8921e6bf6354defa41251be0c04f8bba5002f4 (diff) |
gst-arch: Add support for AArch64
Diffstat (limited to 'm4')
-rw-r--r-- | m4/gst-arch.m4 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/m4/gst-arch.m4 b/m4/gst-arch.m4 index 33a92b9..4ad7680 100644 --- a/m4/gst-arch.m4 +++ b/m4/gst-arch.m4 @@ -51,6 +51,9 @@ AC_DEFUN([AG_GST_ARCH], xarm*) HAVE_CPU_ARM=yes AC_DEFINE(HAVE_CPU_ARM, 1, [Define if the target CPU is an ARM]) ;; + xaarch64*) + HAVE_CPU_AARCH64=yes + AC_DEFINE(HAVE_CPU_AARCH64, 1, [Define if the target CPU is AARCH64]) ;; xsparc*) HAVE_CPU_SPARC=yes AC_DEFINE(HAVE_CPU_SPARC, 1, [Define if the target CPU is a SPARC]) ;; @@ -108,7 +111,7 @@ AC_DEFUN([AG_GST_UNALIGNED_ACCESS], [ AC_MSG_CHECKING([if unaligned memory access works correctly]) if test x"$as_cv_unaligned_access" = x ; then case $host in - alpha*|arc*|arm*|hp*|mips*|sh*|sparc*|ia64*) + alpha*|arc*|arm*|aarch64*|hp*|mips*|sh*|sparc*|ia64*) _AS_ECHO_N([(blacklisted) ]) as_cv_unaligned_access=no ;; |