From e3408a5dbe21d5f18b0ba9b69ceb9c598cf72c92 Mon Sep 17 00:00:00 2001 From: Mathias Gibbens Date: Sat, 13 Jan 2024 21:23:21 +0000 Subject: [PATCH] Add mips64le as a recognized architecture Signed-off-by: Mathias Gibbens --- kernel/kernel_utsname_int8.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kernel/kernel_utsname_int8.go b/kernel/kernel_utsname_int8.go index 1543d57e..ebd89970 100644 --- a/kernel/kernel_utsname_int8.go +++ b/kernel/kernel_utsname_int8.go @@ -17,8 +17,8 @@ // along with this program. If not, see . // -//go:build (linux && 386) || (linux && amd64) || (linux && arm64) || (linux && loong64) || (linux && mips64) || (linux && mips) -// +build linux,386 linux,amd64 linux,arm64 linux,loong64 linux,mips64 linux,mips +//go:build (linux && 386) || (linux && amd64) || (linux && arm64) || (linux && loong64) || (linux && mips64) || (linux && mips64le) || (linux && mips) +// +build linux,386 linux,amd64 linux,arm64 linux,loong64 linux,mips64 linux,mips64le linux,mips package kernel