From 4d4e7cc5fe156381737ee7cc6c775b0f3d73c444 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Fri, 15 Dec 2023 12:51:08 -0500 Subject: [PATCH] Build CLI for Windows ARM64 (#610) With Windows 11 supporting AMD64 (x86) emulation out-of-the-box it becomes possible to run AMD64 plugins on a Windows 11 ARM64 machine. As a first step, this commit starts building the CLI for the Windows ARM64 platform. Signed-off-by: Marc Khouzam --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2f87f0e7e..413a48af0 100644 --- a/Makefile +++ b/Makefile @@ -87,7 +87,7 @@ CHOCO_IMAGE=$(CHOCO_BUILDER_IMAGE) endif # Add supported OS-ARCHITECTURE combinations here -ENVS ?= linux-amd64 windows-amd64 darwin-amd64 linux-arm64 darwin-arm64 +ENVS ?= linux-amd64 windows-amd64 darwin-amd64 linux-arm64 windows-arm64 darwin-arm64 CLI_TARGETS := $(addprefix build-cli-,${ENVS})