From 2a2bf3c90417162a58a673fe7d5eb97922e6f51a Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sun, 22 Oct 2023 17:43:33 -0400 Subject: [PATCH] Makefile: add a few additional architectures to build for Signed-off-by: Vincent Batts --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 36d6719..44e9fbe 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CWD := $(shell pwd) SOURCE_FILES := $(shell find . -type f -name "*.go") CLEAN_FILES := *~ TAGS := -ARCHES := linux,386 linux,amd64 linux,arm linux,arm64 openbsd,amd64 windows,amd64 darwin,amd64 +ARCHES := linux,386 linux,amd64 linux,arm linux,arm64 linux,mips64 linux,riscv64 openbsd,amd64 windows,amd64 windows,arm64 darwin,amd64 darwin,arm64 GO_VER := go1.14 default: build validation