diff --git a/build/build.go b/build/build.go index 81eaecb..8bf4fd6 100644 --- a/build/build.go +++ b/build/build.go @@ -17,11 +17,14 @@ import ( var DIR, _ = filepath.Abs("./dist") var targets = map[string][]string{ + // "aix": {"ppc64"}, // Not supported by fsnotify "darwin": {"amd64", "arm64"}, "freebsd": {"386", "amd64", "arm"}, - "linux": {"386", "amd64", "arm", "arm64"}, + "linux": {"386", "amd64", "arm", "arm64", "ppc64le", "mips", "mipsle", "mips64", "mips64le", "s390x"}, "netbsd": {"386", "amd64"}, "openbsd": {"386", "amd64"}, + // "windows": {"386", "amd64"}, // Not supported by autorestic + "solaris": {"amd64"}, } type buildOptions struct {