/prebuilts/go/darwin-x86/src/ |
buildall.bash | 49 unset GO386 GOARM 52 export GOARM=5
|
iostest.bash | 28 export GOARM=7
|
/prebuilts/go/linux-x86/src/ |
buildall.bash | 49 unset GO386 GOARM 52 export GOARM=5
|
iostest.bash | 28 export GOARM=7
|
/prebuilts/go/darwin-x86/src/runtime/ |
os_linux_arm.go | 24 if goarm > 5 && hwcap&_HWCAP_VFP == 0 { 26 print("this GOARM=", goarm, " binary. Recompile using GOARM=5.\n") 29 if goarm > 6 && hwcap&_HWCAP_VFPv3 == 0 { 31 print("this GOARM=", goarm, " binary. Recompile using GOARM=5.\n")
|
os_darwin_arm.go | 11 if getncpu() > 1 && goarm < 7 { 13 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
os_freebsd_arm.go | 11 if getncpu() > 1 && goarm < 7 { 13 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
os_nacl_arm.go | 11 if goarm != 7 { 12 print("runtime: NaCl requires ARMv7. Recompile using GOARM=7.\n")
|
os_openbsd_arm.go | 11 if getncpu() > 1 && goarm < 7 { 13 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
os_netbsd_arm.go | 22 if getncpu() > 1 && goarm < 7 { 24 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
/prebuilts/go/linux-x86/src/runtime/ |
os_linux_arm.go | 24 if goarm > 5 && hwcap&_HWCAP_VFP == 0 { 26 print("this GOARM=", goarm, " binary. Recompile using GOARM=5.\n") 29 if goarm > 6 && hwcap&_HWCAP_VFPv3 == 0 { 31 print("this GOARM=", goarm, " binary. Recompile using GOARM=5.\n")
|
os_darwin_arm.go | 11 if getncpu() > 1 && goarm < 7 { 13 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
os_freebsd_arm.go | 11 if getncpu() > 1 && goarm < 7 { 13 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
os_nacl_arm.go | 11 if goarm != 7 { 12 print("runtime: NaCl requires ARMv7. Recompile using GOARM=7.\n")
|
os_openbsd_arm.go | 11 if getncpu() > 1 && goarm < 7 { 13 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
os_netbsd_arm.go | 22 if getncpu() > 1 && goarm < 7 { 24 print("atomic synchronization instructions. Recompile using GOARM=7.\n")
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/ |
util.go | 219 switch v := envOr("GOARM", defaultGOARM); v { 224 log.Fatalf("Invalid GOARM value. Must be 5, 6, or 7.")
|
/prebuilts/go/darwin-x86/src/cmd/dist/ |
util.go | 524 goarm := "5" 536 // Infer GOARM value from the vfp features available 537 // on this host. Values of GOARM detected are: 545 goarm = "6" 547 goarm = "7" 551 return goarm
|
build.go | 26 goarm string 116 b = os.Getenv("GOARM") 120 goarm = b 206 os.Setenv("GOARM", goarm) 988 xprintf(format, "GOARM", goarm) 25 goarm string var
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/ |
util.go | 216 switch v := envOr("GOARM", defaultGOARM); v { 221 log.Fatalf("Invalid GOARM value. Must be 5, 6, or 7.")
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/ |
util.go | 219 switch v := envOr("GOARM", defaultGOARM); v { 224 log.Fatalf("Invalid GOARM value. Must be 5, 6, or 7.")
|
/prebuilts/go/linux-x86/src/cmd/dist/ |
util.go | 524 goarm := "5" 536 // Infer GOARM value from the vfp features available 537 // on this host. Values of GOARM detected are: 545 goarm = "6" 547 goarm = "7" 551 return goarm
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/ |
util.go | 216 switch v := envOr("GOARM", defaultGOARM); v { 221 log.Fatalf("Invalid GOARM value. Must be 5, 6, or 7.")
|
/prebuilts/go/darwin-x86/src/math/rand/ |
rand_test.go | 332 if testing.Short() && runtime.GOARCH == "arm" && os.Getenv("GOARM") == "5" {
|
/prebuilts/go/linux-x86/src/math/rand/ |
rand_test.go | 332 if testing.Short() && runtime.GOARCH == "arm" && os.Getenv("GOARM") == "5" {
|