Home | History | Annotate | Download | only in src

Lines Matching refs:GOOS

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.
29 if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then
30 echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2
34 targ="../../go-${GOOS}-${GOARCH}-bootstrap"
63 goos="$(../bin/go env GOOS)"
69 if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then
93 OUTGZ="gobootstrap-${GOOS}-${GOARCH}-${GITREV}.tar.gz"
114 echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)".
117 tar cf - "go-${GOOS}-${GOARCH}-bootstrap" | bzip2 -9 >"go-${GOOS}-${GOARCH}-bootstrap.tbz"
118 ls -l "$(pwd)/go-${GOOS}-${GOARCH}-bootstrap.tbz"