From 1ad796677e1ce3f03463c791818176586987c389 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Mon, 21 Dec 2020 12:30:06 +0100 Subject: Fix build for mips architecture The signal SIGSTKFLT does not exists on mips architectures. Also RTMIN and RTMAX are different. This code is copied from docker. Signed-off-by: Paul Holzinger --- pkg/signal/signal_linux.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/signal/signal_linux.go') diff --git a/pkg/signal/signal_linux.go b/pkg/signal/signal_linux.go index 72ab1b97b..305b9d21f 100644 --- a/pkg/signal/signal_linux.go +++ b/pkg/signal/signal_linux.go @@ -1,4 +1,5 @@ // +build linux +// +build !mips,!mipsle,!mips64,!mips64le // Signal handling for Linux only. package signal -- cgit v1.2.3-54-g00ecf