aboutsummaryrefslogtreecommitdiff
path: root/src/make.bat
AgeCommit message (Collapse)Author
2014-07-12make.bat: return exit code to dashboard builderAlex Brainman
Fixes #7806. LGTM=minux R=golang-codereviews, minux CC=golang-codereviews https://golang.org/cl/104690043
2013-08-02cmd/dist: fix windows build.Rémy Oudompheng
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/12351045
2013-03-25all.bat,make.bat,run.bat: make these work even when directory has space in itAlex Brainman
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7510048
2013-03-12go/types: delete from main repo; part of move to go.expRob Pike
See also https://golang.org/cl/7656044 R=golang-dev, gri, rsc CC=golang-dev https://golang.org/cl/7625048
2013-03-06make.bash,bat: add -tags gotypes to the buildRob Pike
This installs type checking into go vet. (To be removed before releasing Go 1.1) R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7528044
2012-10-22lib9, cmd/dist, cmd/5l: embed GOARM into cmd/5l and auto detect GOARMShenghou Ma
R=rsc, dave CC=golang-dev https://golang.org/cl/6638043
2012-10-12cmd/dist: fix superfluous and confusing "binaries ... to be copied or moved" ↵Shenghou Ma
message Also, to aid debugging cmd/dist, make make.bat support --dist-tool flag. Fixes #3100. R=alex.brainman CC=golang-dev https://golang.org/cl/6637061
2012-03-20build: do more during windows buildAlex Brainman
- use GO_GCFLAGS and GO_LDFLAGS if supplied - build misc\dashboard\builder and misc\goplay - run tests in test\bench\go1 - check api compatibility R=golang-dev, r, kardianos, bradfitz CC=golang-dev https://golang.org/cl/5847063
2012-03-17make.bat: don't show error message if old generated files do not existShenghou Ma
R=golang-dev, alex.brainman, mattn.jp CC=golang-dev https://golang.org/cl/5843045
2012-03-16make.bat: Fix for old filesChristopher Redden
Same fix as applied here: https://golang.org/cl/5761044 Fixes #3222. R=golang-dev, alex.brainman, rsc CC=golang-dev https://golang.org/cl/5838043
2012-03-13make.bat: properly handle directories with spacesAlex Brainman
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/5797079
2012-02-16make.bat, run.bat: echo newlinesHector Chu
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5671072
2012-02-16make.bat: implement --no-cleanAlex Brainman
R=golang-dev, r CC=golang-dev https://golang.org/cl/5656070
2012-02-16build: keep environment variable changes local during Windows buildAlex Brainman
R=bradfitz, rsc CC=golang-dev https://golang.org/cl/5673048
2012-02-13cmd/dist: cross-compiling fixesRuss Cox
This CL makes it possible to run make.bash with GOOS and GOARCH set to something other than the native host GOOS and GOARCH. As part of the CL, the tool directory moves from bin/tool/ to pkg/tool/goos_goarch where goos and goarch are the values for the host system (running the build), not the target. pkg/ is not technically appropriate, but C objects are there now tool (pkg/obj/) so this puts all the generated binaries in one place (rm -rf $GOROOT/pkg cleans everything). Including goos_goarch in the name allows different systems to share a single $GOROOT on a shared file system. Fixes #2920. R=golang-dev, r CC=golang-dev https://golang.org/cl/5645093
2012-02-12build: reject make.bash on WindowsRuss Cox
Also, echo cmd/dist during bootstrap build Makes that phase look like all the others. Fixes #2908. R=golang-dev, alex.brainman, bradfitz CC=golang-dev https://golang.org/cl/5655065
2012-02-10make.bat: remove double quotesAlex Brainman
Fixes #2974. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5653052
2012-02-09cmd/dist: fix GOROOT_FINALGustavo Niemeyer
R=rsc, gustavo CC=golang-dev https://golang.org/cl/5642045
2012-02-04build: dist-based build for windowsRuss Cox
R=golang-dev, bradfitz, iant, alex.brainman, go.peter.90 CC=golang-dev https://golang.org/cl/5630047