blob: 60d6151ccda8dd3e43f317c005c3508b4d733b94 [file] [log] [blame]
Russ Coxdeff22d2015-03-01 19:44:03 -05001#!/bin/bash
2# Copyright 2015 The Go Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file.
5
6# When run as (for example)
7#
8# GOOS=linux GOARCH=ppc64 bootstrap.bash
9#
10# this script cross-compiles a toolchain for that GOOS/GOARCH
11# combination, leaving the resulting tree in ../../go-${GOOS}-${GOARCH}-bootstrap.
12# That tree can be copied to a machine of the given target type
13# and used as $GOROOT_BOOTSTRAP to bootstrap a local build.
14#
15# Only changes that have been committed to Git (at least locally,
16# not necessary reviewed and submitted to master) are included in the tree.
17
18set -e
19
20if [ "$GOOS" = "" -o "$GOARCH" = "" ]; then
21 echo "usage: GOOS=os GOARCH=arch ./bootstrap.bash" >&2
22 exit 2
23fi
24
25targ="../../go-${GOOS}-${GOARCH}-bootstrap"
26if [ -e $targ ]; then
27 echo "$targ already exists; remove before continuing"
28 exit 2
29fi
30
31unset GOROOT
32src=$(cd .. && pwd)
33echo "#### Copying to $targ"
34cp -R "$src" "$targ"
35cd "$targ"
36echo
37echo "#### Cleaning $targ"
38rm .gitignore
39git clean -f -d
40echo
41echo "#### Building $targ"
42echo
43cd src
44./make.bash --no-banner
45gohostos="$(../bin/go env GOHOSTOS)"
46gohostarch="$(../bin/go env GOHOSTARCH)"
47goos="$(../bin/go env GOOS)"
48goarch="$(../bin/go env GOARCH)"
49
50# NOTE: Cannot invoke go command after this point.
51# We're about to delete all but the cross-compiled binaries.
52cd ..
53if [ "$goos" = "$gohostos" -a "$goarch" = "$gohostarch" ]; then
54 # cross-compile for local system. nothing to copy.
55 # useful if you've bootstrapped yourself but want to
56 # prepare a clean toolchain for others.
57 true
58else
59 mv bin/*_*/* bin
60 rmdir bin/*_*
61 rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}"
62fi
63rm -rf pkg/bootstrap pkg/obj .git
64
65echo ----
66echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)".
67echo Building tbz.
68cd ..
69tar cf - "go-${GOOS}-${GOARCH}-bootstrap" | bzip2 -9 >"go-${GOOS}-${GOARCH}-bootstrap.tbz"
70ls -l "$(pwd)/go-${GOOS}-${GOARCH}-bootstrap.tbz"
71exit 0