aboutsummaryrefslogtreecommitdiff
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
commit4ce79096b6a88051bd1253672593f07ce0234155 (patch)
tree705f33cb036485109f9e77a33f2d1b60a33e0645 /src/make.bat
parentbfe80e21e4c0076fb75b14b04b9c9a1c3c4ee419 (diff)
downloadgo-4ce79096b6a88051bd1253672593f07ce0234155.tar.gz
go-4ce79096b6a88051bd1253672593f07ce0234155.zip
go/types: delete from main repo; part of move to go.exp
See also https://golang.org/cl/7656044 R=golang-dev, gri, rsc CC=golang-dev https://golang.org/cl/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 5caba73b17..be1c8f52dc 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.