summaryrefslogtreecommitdiff
path: root/src/make.bat
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2013-03-06 13:16:43 -0800
committerRob Pike <r@golang.org>2013-03-06 13:16:43 -0800
commit736037e1f0bd417934127c32f244c46b14fec23f (patch)
tree0ffc6c41bb6e0769c0a2a12a0ad724a5fdf3277e /src/make.bat
parent111a726c3ca137f9ac11467570ff3a32a7f541d7 (diff)
downloadgo-736037e1f0bd417934127c32f244c46b14fec23f.tar.gz
make.bash,bat: add -tags gotypes to the build
This installs type checking into go vet. (To be removed before releasing Go 1.1) R=golang-dev, minux.ma CC=golang-dev https://codereview.appspot.com/7528044
Diffstat (limited to 'src/make.bat')
-rw-r--r--src/make.bat6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/make.bat b/src/make.bat
index be1c8f52d..5caba73b1 100644
--- a/src/make.bat
+++ b/src/make.bat
@@ -90,14 +90,16 @@ echo # Building tools for local system. %GOHOSTOS%/%GOHOSTARCH%
setlocal
set GOOS=%GOHOSTOS%
set GOARCH=%GOHOSTARCH%
-"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -v std
+:: TODO: Drop the -tags gotypes before releasing Go 1.1. It is to allow type checking in go vet.
+"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -tags gotypes -v std
endlocal
if errorlevel 1 goto fail
echo.
:mainbuild
echo # Building packages and commands.
-"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -a -v std
+:: TODO: Drop the -tags gotypes before releasing Go 1.1. It is to allow type checking in go vet.
+"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -a -tags gotypes -v std
if errorlevel 1 goto fail
del "%GOTOOLDIR%\go_bootstrap.exe"
echo.