forked from TrueCloudLab/restic
helpers: Rework list of architectures
This also removes darwin/386 which is not supported on Go 1.15 any more.
This commit is contained in:
parent
93583c01b1
commit
8903b6c88a
1 changed files with 5 additions and 5 deletions
|
@ -222,11 +222,11 @@ func buildTargets(sourceDir, outputDir string, targets map[string][]string) {
|
|||
}
|
||||
|
||||
var defaultBuildTargets = map[string][]string{
|
||||
"darwin": []string{"386", "amd64"},
|
||||
"freebsd": []string{"386", "amd64", "arm"},
|
||||
"linux": []string{"386", "amd64", "arm", "arm64", "ppc64le"},
|
||||
"openbsd": []string{"386", "amd64"},
|
||||
"windows": []string{"386", "amd64"},
|
||||
"darwin": {"amd64"},
|
||||
"freebsd": {"386", "amd64", "arm"},
|
||||
"linux": {"386", "amd64", "arm", "arm64", "ppc64le"},
|
||||
"openbsd": {"386", "amd64"},
|
||||
"windows": {"386", "amd64"},
|
||||
}
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in a new issue