Home | History | Annotate | Download | only in src

Lines Matching refs:GOARCH

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"
50 goarch="$(../bin/go env GOARCH)"
55 if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then
68 echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)".
71 tar cf - "go-${GOOS}-${GOARCH}-bootstrap" | bzip2 -9 >"go-${GOOS}-${GOARCH}-bootstrap.tbz"
72 ls -l "$(pwd)/go-${GOOS}-${GOARCH}-bootstrap.tbz"