From e96497ea25ef6f1a8037c4a5b91403985bb8724b Mon Sep 17 00:00:00 2001 From: deadprogram Date: Thu, 27 Aug 2026 22:19:12 +0200 Subject: [PATCH] make/smoketest.mk: build nintendoswitch in smoketest-quick It is the only target that uses the aarch64 LLVM triple. With it, smoketest-quick covers all 13 triples that the full smoke test uses. --- make/smoketest.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make/smoketest.mk b/make/smoketest.mk index f2354bb33..fb97e595c 100644 --- a/make/smoketest.mk +++ b/make/smoketest.mk @@ -632,6 +632,9 @@ smoketest-quick: testchdir | build/smoke # x86-64 with PE/COFF output $(TINYGO) build -size short -o $(SMOKE_OUT).efi -target=uefi-amd64 examples/test @$(MD5SUM) $(SMOKE_OUT).efi + # aarch64 + $(TINYGO) build -o $(SMOKE_OUT).nro -target=nintendoswitch examples/echo2 + @$(MD5SUM) $(SMOKE_OUT).nro # cross compilation with cgo GOOS=linux GOARCH=arm $(TINYGO) build -size short -o $(SMOKE_OUT).elf ./testdata/cgo ifneq ($(STM32), 0)