From 7555fc8cb812e3fd3ca9dd183dbea00834ff91c1 Mon Sep 17 00:00:00 2001 From: Niklas Hauser Date: Wed, 17 Jan 2024 22:17:28 +0100 Subject: [PATCH] [test] Add ARM64 hosted targets --- test/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/Makefile b/test/Makefile index dbb55d7b99..5d41f9d46b 100644 --- a/test/Makefile +++ b/test/Makefile @@ -27,8 +27,12 @@ endef run-hosted-linux: $(call compile-test,hosted,run,-D":target=hosted-linux") +run-hosted-linux-arm64: + $(call compile-test,hosted,run,-D":target=hosted-linux-arm64") run-hosted-darwin: $(call compile-test,hosted,run,-D":target=hosted-darwin") +run-hosted-darwin-arm64: + $(call compile-test,hosted,run,-D":target=hosted-darwin-arm64") run-hosted-windows: $(call compile-test,hosted,run,-D":target=hosted-windows")