summaryrefslogtreecommitdiff
path: root/src/make.bat
Commit message (Collapse)AuthorAgeFilesLines
* build: fix windows make.batRuss Cox2014-09-071-1/+1
| | | | | | | | | The Unix make.bash builds cmd/dist from *.c. make.bat apparently does not. TBR=r CC=golang-codereviews https://codereview.appspot.com/137280043
* make.bat: do not exit builder on successful completion of make.bat (fixes build)Alex Brainman2014-07-211-1/+1
| | | | | | | LGTM=dvyukov R=golang-codereviews, dvyukov CC=golang-codereviews https://codereview.appspot.com/118020043
* make.bat: return exit code to dashboard builderAlex Brainman2014-07-121-0/+1
| | | | | | | | | Fixes issue 7806. LGTM=minux R=golang-codereviews, minux CC=golang-codereviews https://codereview.appspot.com/104690043
* cmd/dist: fix windows build.R?my Oudompheng2013-08-021-1/+1
| | | | | | | | R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/12351045 Committer: Brad Fitzpatrick <bradfitz@golang.org>
* all.bat,make.bat,run.bat: make these work even when directory has space in itAlex Brainman2013-03-251-2/+2
| | | | | | R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/7510048
* go/types: delete from main repo; part of move to go.expRob Pike2013-03-121-4/+2
| | | | | | | | See also https://codereview.appspot.com/7656044 R=golang-dev, gri, rsc CC=golang-dev https://codereview.appspot.com/7625048
* make.bash,bat: add -tags gotypes to the buildRob Pike2013-03-061-2/+4
| | | | | | | | | 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
* lib9, cmd/dist, cmd/5l: embed GOARM into cmd/5l and auto detect GOARMShenghou Ma2012-10-221-1/+1
| | | | | | R=rsc, dave CC=golang-dev http://codereview.appspot.com/6638043
* cmd/dist: fix superfluous and confusing "binaries ... to be copied or moved" ↵Shenghou Ma2012-10-121-0/+8
| | | | | | | | | | | | message Also, to aid debugging cmd/dist, make make.bat support --dist-tool flag. Fixes issue 3100. R=alex.brainman CC=golang-dev http://codereview.appspot.com/6637061
* build: do more during windows buildAlex Brainman2012-03-201-5/+30
| | | | | | | | | | | - 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 http://codereview.appspot.com/5847063
* make.bat: don't show error message if old generated files do not existShenghou Ma2012-03-171-1/+1
| | | | | | R=golang-dev, alex.brainman, mattn.jp CC=golang-dev http://codereview.appspot.com/5843045
* make.bat: Fix for old filesChristopher Redden2012-03-161-0/+3
| | | | | | | | | | | | Same fix as applied here: http://codereview.appspot.com/5761044 Fixes issue 3222. R=golang-dev, alex.brainman, rsc CC=golang-dev http://codereview.appspot.com/5838043 Committer: Alex Brainman <alex.brainman@gmail.com>
* make.bat: properly handle directories with spacesAlex Brainman2012-03-131-6/+6
| | | | | | R=golang-dev, minux.ma CC=golang-dev http://codereview.appspot.com/5797079
* make.bat, run.bat: echo newlinesHector Chu2012-02-161-5/+4
| | | | | | R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/5671072
* make.bat: implement --no-cleanAlex Brainman2012-02-161-1/+3
| | | | | | R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5656070
* build: keep environment variable changes local during Windows buildAlex Brainman2012-02-161-5/+10
| | | | | | R=bradfitz, rsc CC=golang-dev http://codereview.appspot.com/5673048
* cmd/dist: cross-compiling fixesRuss Cox2012-02-131-7/+29
| | | | | | | | | | | | | | | | | | | | | 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 issue 2920. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5645093
* build: reject make.bash on WindowsRuss Cox2012-02-121-1/+2
| | | | | | | | | | | Also, echo cmd/dist during bootstrap build Makes that phase look like all the others. Fixes issue 2908. R=golang-dev, alex.brainman, bradfitz CC=golang-dev http://codereview.appspot.com/5655065
* make.bat: remove double quotesAlex Brainman2012-02-101-2/+2
| | | | | | | | Fixes issue 2974. R=golang-dev, r, rsc CC=golang-dev http://codereview.appspot.com/5653052
* cmd/dist: fix GOROOT_FINALGustavo Niemeyer2012-02-091-4/+6
| | | | | | R=rsc, gustavo CC=golang-dev http://codereview.appspot.com/5642045
* build: dist-based build for windowsRuss Cox2012-02-041-0/+52
R=golang-dev, bradfitz, iant, alex.brainman, go.peter.90 CC=golang-dev http://codereview.appspot.com/5630047