HomeSort by relevance Sort by last modified time
    Searched refs:GOOS (Results 1 - 25 of 30) sorted by null

1 2

  /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^.
nacltest.bash 62 unset GOOS GOARCH
80 GOOS=nacl GOARCH=$naclGOARCH ./all.bash
buildall.bash 47 export GOOS=$(echo $target | sed 's/-.*//')
  /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^.
nacltest.bash 62 unset GOOS GOARCH
80 GOOS=nacl GOARCH=$naclGOARCH ./all.bash
buildall.bash 47 export GOOS=$(echo $target | sed 's/-.*//')
  /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
  /build/soong/
bootstrap.bash 27 export GOOS="linux"
31 export GOOS="darwin"
  /build/blueprint/
bootstrap.bash 18 # GOOS
63 [ -z "$GOOS" ] && GOOS=`go env GOHOSTOS`
70 GOTOOLDIR="$GOROOT/pkg/tool/${GOOS}_$GOARCH"
  /prebuilts/go/darwin-x86/misc/cgo/testcarchive/
test.bash 9 if [ "$(go env GOOS)" == "darwin" ]; then
15 ccargs="$ccargs -I pkg/$(go env GOOS)_$(go env GOARCH)"
19 exec_script=go_$(go env GOOS)_$(go env GOARCH)_exec
29 $(go env CC) $(go env GOGCCFLAGS) $ccargs -o testp main.c pkg/$(go env GOOS)_$(go env GOARCH)/libgo.a
  /prebuilts/go/linux-x86/misc/cgo/testcarchive/
test.bash 9 if [ "$(go env GOOS)" == "darwin" ]; then
15 ccargs="$ccargs -I pkg/$(go env GOOS)_$(go env GOARCH)"
19 exec_script=go_$(go env GOOS)_$(go env GOARCH)_exec
29 $(go env CC) $(go env GOGCCFLAGS) $ccargs -o testp main.c pkg/$(go env GOOS)_$(go env GOARCH)/libgo.a
  /prebuilts/go/darwin-x86/src/syscall/
mkall.sh 17 # * asm_${GOOS}_${GOARCH}.s
32 # * syscall_${GOOS}.go
39 # * syscall_${GOOS}_${GOARCH}.go
41 # Same as syscall_${GOOS}.go except that it contains code specific
42 # to ${GOOS} on one particular architecture.
44 # * types_${GOOS}.c
57 # * zerror_${GOOS}_${GOARCH}.go
64 # * zsyscall_${GOOS}_${GOARCH}.go
66 # Generated by mksyscall.pl; see syscall_${GOOS}.go above.
68 # * zsysnum_${GOOS}_${GOARCH}.g
    [all...]

Completed in 1286 milliseconds

1 2