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.
This commit is contained in:
deadprogram
2026-08-27 22:19:12 +02:00
parent e083ed31e6
commit e96497ea25
+3
View File
@@ -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)