forked from mitchellh/gox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platform.go
209 lines (177 loc) · 5.2 KB
/
platform.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package main
import (
"fmt"
"log"
"strings"
version "github.com/hashicorp/go-version"
)
// Platform is a combination of OS/arch that can be built against.
type Platform struct {
OS string
Arch string
// Default, if true, will be included as a default build target
// if no OS/arch is specified. We try to only set as a default popular
// targets or targets that are generally useful. For example, Android
// is not a default because it is quite rare that you're cross-compiling
// something to Android AND something like Linux.
Default bool
}
func (p *Platform) String() string {
return fmt.Sprintf("%s/%s", p.OS, p.Arch)
}
func removeElements(from []Platform, elements []Platform) []Platform {
// make sure we don't change the passed underlying array
np := make([]Platform, len(from), len(from))
copy(np, from)
for _, toRemove := range elements {
for k, v := range np {
if v.Arch == toRemove.Arch && v.OS == toRemove.OS {
np = append(np[:k], np[k+1:]...)
break
}
}
}
return np
}
var (
Platforms_1_0 = []Platform{
{"darwin", "386", true},
{"darwin", "amd64", true},
{"linux", "386", true},
{"linux", "amd64", true},
{"linux", "arm", true},
{"freebsd", "386", true},
{"freebsd", "amd64", true},
{"openbsd", "386", true},
{"openbsd", "amd64", true},
{"windows", "386", true},
{"windows", "amd64", true},
}
Platforms_1_1 = append(Platforms_1_0, []Platform{
{"freebsd", "arm", true},
{"netbsd", "386", true},
{"netbsd", "amd64", true},
{"netbsd", "arm", true},
{"plan9", "386", false},
}...)
Platforms_1_3 = append(Platforms_1_1, []Platform{
{"dragonfly", "386", false},
{"dragonfly", "amd64", false},
{"nacl", "amd64", false},
{"nacl", "amd64p32", false},
{"nacl", "arm", false},
{"solaris", "amd64", false},
}...)
Platforms_1_4 = append(Platforms_1_3, []Platform{
{"android", "arm", false},
{"plan9", "amd64", false},
}...)
Platforms_1_5 = append(Platforms_1_4, []Platform{
{"darwin", "arm", false},
{"darwin", "arm64", true},
{"linux", "arm64", true},
{"linux", "ppc64", false},
{"linux", "ppc64le", false},
}...)
Platforms_1_6 = append(Platforms_1_5, []Platform{
{"android", "386", false},
{"linux", "mips64", false},
{"linux", "mips64le", false},
}...)
Platforms_1_7 = append(Platforms_1_5, []Platform{
// While not fully supported s390x is generally useful
{"linux", "s390x", true},
{"plan9", "arm", false},
// Add the 1.6 Platforms, but reflect full support for mips64 and mips64le
{"android", "386", false},
{"linux", "mips64", true},
{"linux", "mips64le", true},
}...)
Platforms_1_8 = append(Platforms_1_7, []Platform{
{"linux", "mips", true},
{"linux", "mipsle", true},
}...)
// no new platforms in 1.9
Platforms_1_9 = Platforms_1_8
// no new platforms in 1.10
Platforms_1_10 = Platforms_1_9
Platforms_1_11 = append(Platforms_1_10, []Platform{
{"js", "wasm", true},
}...)
// no new platforms in 1.12
Platforms_1_12 = Platforms_1_11
// no new platforms in 1.12
Platforms_1_13 = Platforms_1_12
Platforms_1_14 = removeElements(Platforms_1_13, []Platform{
// Native Client was removed in 1.14 (https://golang.org/doc/go1.14#nacl)
{"nacl", "amd64", false},
{"nacl", "amd64p32", false},
{"nacl", "arm", false},
})
Platforms_1_15 = append(
removeElements(Platforms_1_14, []Platform{
// darwin/386, darwin/arm is unsupported from Go 1.15 (https://golang.org/doc/go1.15#darwin)
{"darwin", "386", true},
{"darwin", "arm", false},
}),
[]Platform{
{"linux", "riscv64", true},
}...)
Platforms_1_16 = append(Platforms_1_15,
Platform{"ios", "amd64", false}, // iOS simulator on macOS devices with x86 CPU
Platform{"ios", "arm64", false}, // regular iOS devices
)
Platforms_1_17 = append(Platforms_1_16,
Platform{"windows", "arm64", true},
)
PlatformsLatest = Platforms_1_17
)
// SupportedPlatforms returns the full list of supported platforms for
// the version of Go that is
func SupportedPlatforms(v string) []Platform {
// Use latest if we get an unexpected version string
if !strings.HasPrefix(v, "go") {
return PlatformsLatest
}
// go-version only cares about version numbers
v = v[2:]
current, err := version.NewVersion(v)
if err != nil {
log.Printf("Unable to parse current go version: %s\n%s", v, err.Error())
// Default to latest
return PlatformsLatest
}
var platforms = []struct {
constraint string
plat []Platform
}{
{"<= 1.0", Platforms_1_0},
{">= 1.1, < 1.3", Platforms_1_1},
{">= 1.3, < 1.4", Platforms_1_3},
{">= 1.4, < 1.5", Platforms_1_4},
{">= 1.5, < 1.6", Platforms_1_5},
{">= 1.6, < 1.7", Platforms_1_6},
{">= 1.7, < 1.8", Platforms_1_7},
{">= 1.8, < 1.9", Platforms_1_8},
{">= 1.9, < 1.10", Platforms_1_9},
{">=1.10, < 1.11", Platforms_1_10},
{">=1.11, < 1.12", Platforms_1_11},
{">=1.12, < 1.13", Platforms_1_12},
{">=1.13, < 1.14", Platforms_1_13},
{">=1.14, < 1.15", Platforms_1_14},
{">=1.15, < 1.16", Platforms_1_15},
{">=1.16, < 1.17", Platforms_1_16},
{">=1.17, < 1.18", Platforms_1_17},
}
for _, p := range platforms {
constraints, err := version.NewConstraint(p.constraint)
if err != nil {
panic(err)
}
if constraints.Check(current) {
return p.plat
}
}
// Assume latest
return PlatformsLatest
}