Fix configure goo for aarch64 with byte order specified.
authorTaylor R Campbell <campbell@mumble.net>
Tue, 15 Jan 2019 03:11:36 +0000 (03:11 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Wed, 21 Aug 2019 21:34:01 +0000 (21:34 +0000)
src/microcode/aclocal.m4
src/microcode/configure.ac

index 3380e4de62074b0d0d2af42f16a14a76bde3e5eb..e5da72393d89deb60045a93837b701f11e9f7bd7 100644 (file)
@@ -151,7 +151,7 @@ x86-64|x86_64|amd64)
     mit_scheme_architecture=x86-64
     ;;
 aarch64le|aarch64be)
-    mit_scheme_architecture=aarch64
+    mit_scheme_architecture=${_mit_scheme_architecture_spec}
     ;;
 *)
     AC_MSG_ERROR([unknown compiler architecture: ${_mit_scheme_architecture_spec}])
index 213685d383427e27e2c3c1f3cac27ba948695570..def73f6ec3a1f219c88d78e968b75c7ddc6cd163 100644 (file)
@@ -894,6 +894,9 @@ case ${mit_scheme_native_code} in
 svm1-32be|svm1-32le|svm1-64be|svm1-64le)
     cmpintmd=svm1
     ;;
+aarch64be|aarch64le)
+    cmpintmd=aarch64
+    ;;
 *)
     cmpintmd=${mit_scheme_native_code}
     ;;