aboutsummaryrefslogtreecommitdiff
path: root/src/make.rc
diff options
context:
space:
mode:
authorJeremy Jackins <jeremyjackins@gmail.com>2015-05-28 16:13:23 +0900
committerIan Lance Taylor <iant@golang.org>2015-06-17 04:05:50 +0000
commit73549789506121fda0dd4b43f7e5826f2efdb042 (patch)
tree41697191afbbd66aaa24e9323f21b06a2f41e8ce /src/make.rc
parentb03129aa2758a337823071ffda37e49da5a814d0 (diff)
downloadgo-73549789506121fda0dd4b43f7e5826f2efdb042.tar.gz
go-73549789506121fda0dd4b43f7e5826f2efdb042.zip
doc: replace references to {5..9}{g,l} with go tool compile and go tool link
I updated some references to 6g, 6l and friends that I came across, as those programs don't exist anymore. I also fixed some echos in make.rc to match other make.* scripts while I was there. Change-Id: Ib84532cd4688cf65174dd9869e5d42af98a20a48 Reviewed-on: https://go-review.googlesource.com/11162 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/make.rc')
-rwxr-xr-xsrc/make.rc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/make.rc b/src/make.rc
index 1d51f2842e..60162045ed 100755
--- a/src/make.rc
+++ b/src/make.rc
@@ -19,10 +19,10 @@
#
# GOOS: The target operating system for installed packages and tools.
#
-# GO_GCFLAGS: Additional 5g/6g/8g arguments to use when
+# GO_GCFLAGS: Additional go tool compile arguments to use when
# building the packages and commands.
#
-# GO_LDFLAGS: Additional 5l/6l/8l arguments to use when
+# GO_LDFLAGS: Additional go tool link arguments to use when
# building the commands.
#
# CGO_ENABLED: Controls cgo usage during the build. Set it to 1
@@ -41,7 +41,7 @@ rm -f ./runtime/runtime_defs.go
# Determine the host compiler toolchain.
eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
-echo '# Building Go bootstrap tool.'
+echo '##### Building Go bootstrap tool.'
echo cmd/dist
GOROOT = `{cd .. && pwd}
if(! ~ $#GOROOT_BOOTSTRAP 1)
@@ -79,13 +79,13 @@ if(~ $sysname vx32)
pflag = (-p 1)
if(! ~ $GOHOSTARCH $GOARCH || ! ~ $GOHOSTOS $GOOS){
- echo '# Building packages and commands for host,' $GOHOSTOS/$GOHOSTARCH^.
+ echo '##### Building packages and commands for host,' $GOHOSTOS/$GOHOSTARCH^.
GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \
$GOTOOLDIR/go_bootstrap install -gcflags $"GO_GCFLAGS -ldflags $"GO_LDFLAGS -v $pflag std cmd
echo
}
-echo '# Building packages and commands for' $GOOS/$GOARCH^.
+echo '##### Building packages and commands for' $GOOS/$GOARCH^.
$GOTOOLDIR/go_bootstrap install -gcflags $"GO_GCFLAGS -ldflags $"GO_LDFLAGS -v $pflag std cmd
echo