From e65925b226d26477aad68cbf1a844ec6c2a89099 Mon Sep 17 00:00:00 2001 From: Michal Biesek Date: Mon, 14 Aug 2023 02:22:07 +0200 Subject: [PATCH] Extend `build-cross` target with `riscv64` arch Signed-off-by: Michal Biesek --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c39d6e0..23c3d8b 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ build-cross: $(call go-build,linux,ppc64le) $(call go-build,linux,s390x) $(call go-build,linux,mips64le) + $(call go-build,linux,riscv64) $(call go-build,windows,amd64) $(call go-build,windows,386)