From f99305e9e5c0da4a2821f0bfd04b3d7bbd3b78c3 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 31 Jan 2024 14:10:35 -0800 Subject: [PATCH] Makefile.vc: add ARM64 support This enables the executables and the correct flags, it's a full desktop platform. This is different from the old Windows mobile ARM target. Change-Id: I610d1579e5dac7b0a6a50ab9194a5f1fef2fc907 --- Makefile.vc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.vc b/Makefile.vc index 985a5c6c..84e9a5dd 100644 --- a/Makefile.vc +++ b/Makefile.vc @@ -12,6 +12,8 @@ LIBSHARPYUV_BASENAME = libsharpyuv ARCH = x86 !ELSE IF ! [ cl 2>&1 | find "x64" > NUL ] ARCH = x64 +!ELSE IF ! [ cl 2>&1 | find "ARM64" > NUL ] +ARCH = ARM64 !ELSE IF ! [ cl 2>&1 | find "ARM" > NUL ] ARCH = ARM !ELSE