Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2)

Delta Between Two Patch Sets: src/make.bash

Issue 6490119: all: FreeBSD/ARM w/ cgo port (Closed)
Left Patch Set: diff -r e990cf183236 https://code.google.com/p/go Created 12 years, 6 months ago
Right Patch Set: diff -r cfa9208b98fc http://go.googlecode.com/hg/ Created 12 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « .hgignore ('k') | src/pkg/go/build/build.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b