...
1
2
3 package buildcfg
4
5 import "runtime"
6
7 const DefaultGO386 = `sse2`
8 const DefaultGOAMD64 = `v1`
9 const DefaultGOARM = `7`
10 const DefaultGOARM64 = `v8.0`
11 const DefaultGOMIPS = `hardfloat`
12 const DefaultGOMIPS64 = `hardfloat`
13 const DefaultGOPPC64 = `power8`
14 const DefaultGORISCV64 = `rva20u64`
15 const defaultGOEXPERIMENT = ``
16 const defaultGO_EXTLINK_ENABLED = ``
17 const defaultGO_LDSO = ``
18 const version = `go1.24.8`
19 const defaultGOOS = runtime.GOOS
20 const defaultGOARCH = runtime.GOARCH
21 const DefaultGOFIPS140 = `off`
22
View as plain text