Currently containerd has a hardcode signal map, and on mipsx(mips, mipsel, mips64el), it failed to build: ``` signal_map_linux.go:45:12: undefined: unix.SIGSTKFLT ``` See the log on https://buildd.debian.org/status/logs.php?pkg=containerd&ver=1.2.4~ds1-1 I've submitted a patch to golang.org/x/sys, https://go-review.googlesource.com/c/sys/+/164778 to add a SignalNum func, so containerd no longer needs this hardcode signal map. Once it gets merged, I'll update containerd to use this.
Currently containerd has a hardcode signal map, and on mipsx(mips, mipsel, mips64el), it failed to build:
See the log on https://buildd.debian.org/status/logs.php?pkg=containerd&ver=1.2.4~ds1-1
I've submitted a patch to golang.org/x/sys, https://go-review.googlesource.com/c/sys/+/164778
to add a SignalNum func, so containerd no longer needs this hardcode signal map. Once it gets merged, I'll update containerd to use this.