Boundary on OpenBSD anyone?

Also with statically linked binaries, at least the API listeners of the 70 goroutines get stuck.

The Go 1.16 Release Notes imply that OpenBSD 6.9+ can still run static Go binaries.

The following “hack” of the LD_FLAGS of gox in scripts/build.sh “forces external linking” and produces static binaries for Boundary 0.5.1, tested on both OpenBSD-amd64 6.9 with Go 1.16.2 and 7.0-current snapshot with Go 1.16.6:

-   -ldflags "${LD_FLAGS}-X github.com/...
+   -ldflags "-linkmode external -extldflags '-fno-PIC -static' -X github.com/...

So the debugging continues, any suggestions?