From 41df62fd674bd0c67f7b6952381d235a393245d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 13 Oct 2017 11:10:27 +0300 Subject: [PATCH] configure: Set the default assembler to armasm64 for MSVC for arm64 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index e45b3201fc..d74a83e239 100755 --- a/configure +++ b/configure @@ -2946,6 +2946,9 @@ case "$toolchain" in nm_default="dumpbin -symbols" ar_default="lib" case "$arch" in + aarch64|arm64) + as_default="armasm64" + ;; arm*) as_default="armasm" ;;