1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From da6390459468e097f8bfbc71c6b9d8e3aff3cb15 Mon Sep 17 00:00:00 2001
From: Ast-x64 <Ast-x64@protonmail.com>
Date: Thu, 11 Nov 2021 15:37:16 +0800
Subject: [PATCH] fix riscv support
---
cpu_no_init.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/cpu_no_init.go b/cpu_no_init.go
index 1be4f29..e7add29 100644
--- a/cpu_no_init.go
+++ b/cpu_no_init.go
@@ -8,6 +8,7 @@
// +build !arm64
// +build !ppc64
// +build !ppc64le
+// +build !riscv64
// +build !s390x
package cpu
|