...
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.23.3`
19 const defaultGOOS = runtime.GOOS
20 const defaultGOARCH = runtime.GOARCH
21
View as plain text