ref: bc83179c078fcc498d8d4ee3490c2acebc9cbf9c
parent: 0de64a9e964ab42bf66ddd6c20be0ae3a809098c
parent: 654e71e37068bd14b3d169b01a12d8a53ad110bc
author: guangwei <GuangweiWang@users.noreply.github.com>
date: Fri Oct 20 05:26:10 EDT 2017
Merge pull request #2859 from mstorsjo/armasm64 Add support for building with ARCH=arm64 with MSVC
--- a/build/msvc-common.mk
+++ b/build/msvc-common.mk
@@ -12,6 +12,10 @@
CCAS = gas-preprocessor.pl -as-type armasm -force-thumb -- armasm
CCASFLAGS = -nologo -DHAVE_NEON -ignore 4509
endif
+ifeq ($(ASM_ARCH), arm64)
+CCAS = gas-preprocessor.pl -as-type armasm -arch aarch64 -- armasm64
+CCASFLAGS = -nologo -DHAVE_NEON_AARCH64
+endif
CC=cl
CXX=cl