aboutsummaryrefslogtreecommitdiff
path: root/src/make.bat
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-12-10 10:45:59 -0500
committerRuss Cox <rsc@golang.org>2014-12-13 00:03:23 +0000
commitd160d1bc878566ad62a5426956b23b95403513c7 (patch)
treef05cc7232e248a7bcf3832e27c57e9ebc046e0dd /src/make.bat
parentb7a2b1e980f3f8471f87cd9108d4461b88e39f76 (diff)
downloadgo-d160d1bc878566ad62a5426956b23b95403513c7.tar.gz
go-d160d1bc878566ad62a5426956b23b95403513c7.zip
build: change all.bash output to be more markdown-friendly
People keep pasting all.bash output into GitHub bugs, which turns the # lines into <h1> headlines. Add some more #s so that the bug reports are more readable. Not ideal but seems like the best of a few bad options. Change-Id: I4c69930ec304b2d504d7cd66221281a8577b87ae Reviewed-on: https://go-review.googlesource.com/1286 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Andrew Gerrand <adg@golang.org>
Diffstat (limited to 'src/make.bat')
-rw-r--r--src/make.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/make.bat b/src/make.bat
index fff1eb6011..8d035b0d22 100644
--- a/src/make.bat
+++ b/src/make.bat
@@ -56,7 +56,7 @@ cd src
if "x%GOROOT_FINAL%"=="x" set GOROOT_FINAL=%GOROOT%
set DEFGOROOT=-DGOROOT_FINAL="\"%GOROOT_FINAL:\=\\%\""
-echo # Building C bootstrap tool.
+echo ##### Building C bootstrap tool.
echo cmd/dist
if not exist ..\bin\tool mkdir ..\bin\tool
:: Windows has no glob expansion, so spell out cmd/dist/*.c.
@@ -71,7 +71,7 @@ echo.
if x%1==x--dist-tool goto copydist
if x%2==x--dist-tool goto copydist
-echo # Building compilers and Go bootstrap tool.
+echo ##### Building compilers and Go bootstrap tool.
set buildall=-a
if x%1==x--no-clean set buildall=
.\cmd\dist\dist bootstrap %buildall% -v
@@ -86,7 +86,7 @@ if not %GOHOSTOS% == %GOOS% goto localbuild
goto mainbuild
:localbuild
-echo # Building tools for local system. %GOHOSTOS%/%GOHOSTARCH%
+echo ##### Building tools for local system. %GOHOSTOS%/%GOHOSTARCH%
setlocal
set GOOS=%GOHOSTOS%
set GOARCH=%GOHOSTARCH%
@@ -96,7 +96,7 @@ if errorlevel 1 goto fail
echo.
:mainbuild
-echo # Building packages and commands.
+echo ##### Building packages and commands.
"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -a -v std
if errorlevel 1 goto fail
del "%GOTOOLDIR%\go_bootstrap.exe"