LEFT | RIGHT |
(no file at all) | |
1 #!/usr/bin/env bash | 1 #!/bin/sh |
2 # Copyright 2009 The Go Authors. All rights reserved. | 2 # Copyright 2009 The Go Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style | 3 # Use of this source code is governed by a BSD-style |
4 # license that can be found in the LICENSE file. | 4 # license that can be found in the LICENSE file. |
5 | 5 |
6 # Environment variables that control make.bash: | 6 # Environment variables that control make.bash: |
7 # | 7 # |
8 # GOROOT_FINAL: The expected final Go root, baked into binaries. | 8 # GOROOT_FINAL: The expected final Go root, baked into binaries. |
9 # The default is the location of the Go tree during the build. | 9 # The default is the location of the Go tree during the build. |
10 # | 10 # |
11 # GOHOSTARCH: The architecture for host tools (compilers and | 11 # GOHOSTARCH: The architecture for host tools (compilers and |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 | 128 |
129 echo "# Building packages and commands for $GOOS/$GOARCH." | 129 echo "# Building packages and commands for $GOOS/$GOARCH." |
130 "$GOTOOLDIR"/go_bootstrap install -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS"
-v std | 130 "$GOTOOLDIR"/go_bootstrap install -gcflags "$GO_GCFLAGS" -ldflags "$GO_LDFLAGS"
-v std |
131 echo | 131 echo |
132 | 132 |
133 rm -f "$GOTOOLDIR"/go_bootstrap | 133 rm -f "$GOTOOLDIR"/go_bootstrap |
134 | 134 |
135 if [ "$1" != "--no-banner" ]; then | 135 if [ "$1" != "--no-banner" ]; then |
136 "$GOTOOLDIR"/dist banner | 136 "$GOTOOLDIR"/dist banner |
137 fi | 137 fi |
LEFT | RIGHT |