-
-
Notifications
You must be signed in to change notification settings - Fork 410
Expand file tree
/
Copy pathtargets.go
More file actions
38 lines (36 loc) · 643 Bytes
/
targets.go
File metadata and controls
38 lines (36 loc) · 643 Bytes
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
package knowledge
var KnownGOOS = map[string]struct{}{
"aix": {},
"android": {},
"darwin": {},
"dragonfly": {},
"freebsd": {},
"hurd": {},
"illumos": {},
"ios": {},
"js": {},
"linux": {},
"netbsd": {},
"openbsd": {},
"plan9": {},
"solaris": {},
"wasip1": {},
"windows": {},
}
var KnownGOARCH = map[string]struct{}{
"386": {},
"amd64": {},
"arm": {},
"arm64": {},
"loong64": {},
"mips": {},
"mipsle": {},
"mips64": {},
"mips64le": {},
"ppc64": {},
"ppc64le": {},
"riscv64": {},
"s390x": {},
"sparc64": {},
"wasm": {},
}