/prebuilts/go/darwin-x86/src/ |
bootstrap.bash | 8 # GOOS=linux GOARCH=ppc64 bootstrap.bash 10 # this script cross-compiles a toolchain for that GOOS/GOARCH 11 # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap. 20 if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then 21 echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2 25 targ="../../go-${GOOS}-${GOARCH}-bootstrap" 49 goos="$(../bin/go env GOOS)" 55 if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then 68 echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)" [all...] |
iostest.bash | 16 if [ -z $GOOS ]; then 17 export GOOS=darwin 19 if [ "$GOOS" != "darwin" ]; then 20 echo "iostest.bash requires GOOS=darwin, got GOOS=$GOOS" 1>&2 59 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \ 65 eval $(GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go run ../misc/ios/detect.go)
|
androidtest.bash | 18 if [ -z $GOOS ]; then 19 export GOOS=android 21 if [ "$GOOS" != "android" ]; then 22 echo "androidtest.bash requires GOOS=android, got GOOS=$GOOS" 1>&2 34 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \
|
make.bash | 20 # GOOS: The target operating system for installed packages and tools. 121 GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist 151 if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOHOSTOS" != "$GOOS" ]; then 155 CC=$CC GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ 160 echo "##### Building packages and commands for $GOOS/$GOARCH."
|
make.rc | 20 # GOOS: The target operating system for installed packages and tools. 55 GOROOT=$GOROOT_BOOTSTRAP GOOS='' GOARCH='' $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist 81 if(! ~ $GOHOSTARCH $GOARCH || ! ~ $GOHOSTOS $GOOS){ 83 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ 88 echo '##### Building packages and commands for' $GOOS/$GOARCH^.
|
/prebuilts/go/linux-x86/src/ |
bootstrap.bash | 8 # GOOS=linux GOARCH=ppc64 bootstrap.bash 10 # this script cross-compiles a toolchain for that GOOS/GOARCH 11 # combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap. 20 if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then 21 echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2 25 targ="../../go-${GOOS}-${GOARCH}-bootstrap" 49 goos="$(../bin/go env GOOS)" 55 if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then 68 echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)" [all...] |
iostest.bash | 16 if [ -z $GOOS ]; then 17 export GOOS=darwin 19 if [ "$GOOS" != "darwin" ]; then 20 echo "iostest.bash requires GOOS=darwin, got GOOS=$GOOS" 1>&2 59 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \ 65 eval $(GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go run ../misc/ios/detect.go)
|
androidtest.bash | 18 if [ -z $GOOS ]; then 19 export GOOS=android 21 if [ "$GOOS" != "android" ]; then 22 echo "androidtest.bash requires GOOS=android, got GOOS=$GOOS" 1>&2 34 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \
|
make.bash | 20 # GOOS: The target operating system for installed packages and tools. 121 GOROOT="$GOROOT_BOOTSTRAP" GOOS="" GOARCH="" "$GOROOT_BOOTSTRAP/bin/go" build -o cmd/dist/dist ./cmd/dist 151 if [ "$GOHOSTARCH" != "$GOARCH" -o "$GOHOSTOS" != "$GOOS" ]; then 155 CC=$CC GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ 160 echo "##### Building packages and commands for $GOOS/$GOARCH."
|
make.rc | 20 # GOOS: The target operating system for installed packages and tools. 55 GOROOT=$GOROOT_BOOTSTRAP GOOS='' GOARCH='' $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist 81 if(! ~ $GOHOSTARCH $GOARCH || ! ~ $GOHOSTOS $GOOS){ 83 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ 88 echo '##### Building packages and commands for' $GOOS/$GOARCH^.
|
/prebuilts/go/darwin-x86/misc/nacl/ |
go_nacl_386_exec | 6 export NACLENV_GOOS=$GOOS
|
go_nacl_amd64p32_exec | 6 export NACLENV_GOOS=$GOOS
|
go_nacl_arm_exec | 6 export NACLENV_GOOS=$GOOS
|
/prebuilts/go/linux-x86/misc/nacl/ |
go_nacl_386_exec | 6 export NACLENV_GOOS=$GOOS
|
go_nacl_amd64p32_exec | 6 export NACLENV_GOOS=$GOOS
|
go_nacl_arm_exec | 6 export NACLENV_GOOS=$GOOS
|
/prebuilts/go/darwin-x86/misc/cgo/test/ |
cflags.go | 26 if is_windows != (runtime.GOOS == "windows") { 27 t.Errorf("is_windows: %v, runtime.GOOS: %s", is_windows, runtime.GOOS)
|
/prebuilts/go/darwin-x86/src/os/user/ |
lookup_stubs.go | 19 return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 23 return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 27 return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
/prebuilts/go/linux-x86/misc/cgo/test/ |
cflags.go | 26 if is_windows != (runtime.GOOS == "windows") { 27 t.Errorf("is_windows: %v, runtime.GOOS: %s", is_windows, runtime.GOOS)
|
/prebuilts/go/linux-x86/src/os/user/ |
lookup_stubs.go | 19 return nil, fmt.Errorf("user: Current not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 23 return nil, fmt.Errorf("user: Lookup not implemented on %s/%s", runtime.GOOS, runtime.GOARCH) 27 return nil, fmt.Errorf("user: LookupId not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/ |
zbootstrap.go | 10 const defaultGOOS = runtime.GOOS
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/ |
zbootstrap.go | 10 const defaultGOOS = runtime.GOOS
|
/build/soong/ |
bootstrap.bash | 27 export GOOS="linux" 31 export GOOS="darwin"
|
/prebuilts/go/darwin-x86/src/go/build/ |
build_test.go | 39 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true}) 40 match(runtime.GOOS+","+runtime.GOARCH+",!foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true}) 41 nomatch(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true}) 45 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true}) 46 match(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true} [all...] |
/prebuilts/go/linux-x86/src/go/build/ |
build_test.go | 39 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true}) 40 match(runtime.GOOS+","+runtime.GOARCH+",!foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true}) 41 nomatch(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true}) 45 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true}) 46 match(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true} [all...] |