summaryrefslogtreecommitdiff
path: root/src/make.bat
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2013-03-12 13:55:58 -0700
committerRob Pike <r@golang.org>2013-03-12 13:55:58 -0700
commit1e7f29e3766b71166147a4349a03a51e69c6f673 (patch)
tree45514d899399f8f4514b54f21dc178637845d455 /src/make.bat
parenta640484903fdd1d6c573aae619fba7e7058ae891 (diff)
downloadgo-1e7f29e3766b71166147a4349a03a51e69c6f673.tar.gz
go/types: delete from main repo; part of move to go.exp
See also https://codereview.appspot.com/7656044 R=golang-dev, gri, rsc CC=golang-dev https://codereview.appspot.com/7625048
Diffstat (limited to 'src/make.bat')
-rw-r--r--src/make.bat6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/make.bat b/src/make.bat
index 5caba73b1..be1c8f52d 100644
--- a/src/make.bat
+++ b/src/make.bat
@@ -90,16 +90,14 @@ echo # Building tools for local system. %GOHOSTOS%/%GOHOSTARCH%
setlocal
set GOOS=%GOHOSTOS%
set GOARCH=%GOHOSTARCH%
-:: 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
+"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -v std
endlocal
if errorlevel 1 goto fail
echo.
:mainbuild
echo # Building packages and commands.
-:: 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
+"%GOTOOLDIR%\go_bootstrap" install -gcflags "%GO_GCFLAGS%" -ldflags "%GO_LDFLAGS%" -a -v std
if errorlevel 1 goto fail
del "%GOTOOLDIR%\go_bootstrap.exe"
echo.