summaryrefslogtreecommitdiff
path: root/doc/install-source.html
Commit message (Collapse)AuthorAgeFilesLines
* all: use golang.org/x/... import pathsAndrew Gerrand2014-11-101-3/+3
| | | | | | | LGTM=rsc, r R=r, rsc CC=golang-codereview, golang-codereviews https://codereview.appspot.com/168050043
* doc: drop scheme from links that are known to support HTTPSAndrew Gerrand2014-07-251-7/+7
| | | | | | | | | | | golang.org now serves HTTPS with a valid cert, so it's reasonable that users should click through to the HTTPS versions of *.golang.org and other known sites. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/112650043
* doc/install-source.html: document that GO386 will be auto-detected when ↵Shenghou Ma2014-06-041-1/+1
| | | | | | | | | | | building on both 386 and amd64. Fixes issue 8152. LGTM=iant R=iant CC=golang-codereviews https://codereview.appspot.com/102150046
* doc: fix link to Mercurial downloadRobert Hencke2014-04-281-1/+1
| | | | | | | | | | | Oddly, 404s with the trailing slash. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://codereview.appspot.com/90790045 Committer: Brad Fitzpatrick <bradfitz@golang.org>
* doc: document DragonFly BSD portMikio Hara2014-03-261-3/+9
| | | | | | | LGTM=r R=golang-codereviews, r CC=golang-codereviews https://codereview.appspot.com/80120044
* doc: document Solaris port.Shenghou Ma2014-03-251-2/+5
| | | | | | | LGTM=aram, rsc R=aram, adg, bradfitz, rsc CC=golang-codereviews https://codereview.appspot.com/74750045
* doc/install-source.html: mention make.bash to skip testsShenghou Ma2013-12-151-0/+4
| | | | | | R=golang-dev, adg CC=golang-dev https://codereview.appspot.com/42590043
* doc: update installation instructionsAndrew Gerrand2013-11-211-2/+15
| | | | | | | | | | | | | Clarify that GOROOT should only be set when using a custom install path. Remove NetBSD from binary install page (we don't provide binaries). Remove "What's next" links from installation instructions. Emphasize "How to Write Go Code" page. Fixes issue 6613. R=golang-dev, r CC=golang-dev https://codereview.appspot.com/28700043
* doc: mention the install locations for godoc, cover, and vetAndrew Gerrand2013-09-251-0/+10
| | | | | | R=golang-dev, r CC=golang-dev https://codereview.appspot.com/13893043
* doc: fix typo in install-source.htmlAndrew Gerrand2013-09-251-1/+1
| | | | | | R=golang-dev, minux.ma CC=golang-dev https://codereview.appspot.com/13892043
* doc: document installation of go.tools commandsAndrew Gerrand2013-09-251-0/+30
| | | | | | | | Fixes issue 5663. R=golang-dev, r CC=golang-dev https://codereview.appspot.com/13891043
* doc/install-source.html: recent ARM and 386 updatesShenghou Ma2013-06-091-16/+47
| | | | | | R=golang-dev, dave, adg, remyoudompheng, r CC=golang-dev https://codereview.appspot.com/6845083
* doc: move os specific build instructions to wikiDave Cheney2013-02-101-27/+4
| | | | | | | | | | Fixes issue 4010. This proposal avoids cluttering the main install-source.html with OS specific instructions by linking to the wiki for details. See discussion in the comments. R=adg, minux.ma CC=golang-dev https://codereview.appspot.com/7241068
* doc: add important info for would-be go contributors.Jonathan Feinberg2012-09-261-0/+12
| | | | | | | | | | | | Link to the "installing from source" docs instead of the "installing" docs. Remind would-be hacker to switch to the default branch from the release branch. R=rsc CC=golang-dev http://codereview.appspot.com/6559043 Committer: Russ Cox <rsc@golang.org>
* doc/install: we only need command line tools for Xcode on OS XShenghou Ma2012-08-201-2/+8
| | | | | | | | Fixes issue 3973. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/6464078
* doc: remove mention of weekly tag from source install docAndrew Gerrand2012-07-301-8/+2
| | | | | | R=golang-dev, dsymonds, bradfitz CC=golang-dev http://codereview.appspot.com/6442062
* doc/install: mention GOPATH and point to code.htmlAndrew Gerrand2012-06-131-0/+6
| | | | | | | | Fixes issue 3469. R=golang-dev, kevlar, rsc, r CC=golang-dev http://codereview.appspot.com/6304049
* doc/install: we don't print 'The compiler is 6g' anymoreRuss Cox2012-06-041-1/+0
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/6273050
* doc: update Mercurial installation instructionsAndrew Gerrand2012-04-141-17/+4
| | | | | | R=r CC=golang-dev http://codereview.appspot.com/6031046
* cmd/go: respect $GOBIN alwaysRuss Cox2012-03-271-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | Another attempt at http://codereview.appspot.com/5754088. Before, we only consulted $GOBIN for source code found in $GOROOT, but that's confusing to explain and less useful. The new behavior lets users set GOBIN=$HOME/bin and have all go-compiled binaries installed there. Tested a few cases in test.bash. Ran all.bash with and without $GOBIN and it works. Even so, I expect it to break the builders, like it did last time, we can debug from there. Fixes issue 3269 (again). Fixes issue 3396. Fixes issue 3397. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5927051
* undo CL 5754088 / cae9a7c0db06Russ Cox2012-03-121-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | broke builders ??? original CL description cmd/go: respect $GOBIN always Before, we only consulted $GOBIN for source code found in $GOROOT, but that's confusing to explain and less useful. The new behavior lets users set GOBIN=$HOME/bin and have all go-compiled binaries installed there. Fixes issue 3269. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5754088 ??? TBR=bradfitz CC=golang-dev http://codereview.appspot.com/5794065
* cmd/go: respect $GOBIN alwaysRuss Cox2012-03-121-2/+3
| | | | | | | | | | | | | | Before, we only consulted $GOBIN for source code found in $GOROOT, but that's confusing to explain and less useful. The new behavior lets users set GOBIN=$HOME/bin and have all go-compiled binaries installed there. Fixes issue 3269. R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5754088
* doc: give up on OS X LeopardRuss Cox2012-03-071-1/+1
| | | | | | | | Fixes issue 3206. R=golang-dev, gri, bradfitz CC=golang-dev http://codereview.appspot.com/5769046
* doc: update install docs for Windows and Go 1, add golang-announce to /projectAndrew Gerrand2012-03-061-153/+127
| | | | | | R=golang-dev, bradfitz, r, rsc CC=golang-dev http://codereview.appspot.com/5758044
* doc: clean up docs page, refer to wiki, change install doc pathsAndrew Gerrand2012-03-051-3/+3
| | | | | | R=golang-dev, minux.ma, r CC=golang-dev http://codereview.appspot.com/5728051
* doc/install-source.html: update for go toolRob Pike2012-03-031-56/+48
| | | | | | | | | Make some updates, get rid of mentions of make. There remain a number of open questions. R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/5720057
* tutorial: deleteRob Pike2012-02-281-2/+1
| | | | | | | | | | Instead we'll point people at the Tour and beef up code.html. Fixes issue 3107. R=golang-dev, bradfitz, r, adg CC=golang-dev http://codereview.appspot.com/5697077
* doc: move wiki tutorial into articles directory, rmdir doc/codelabAndrew Gerrand2012-02-271-2/+2
| | | | | | R=golang-dev, bradfitz CC=golang-dev http://codereview.appspot.com/5701050
* doc: fix links in installation instructionsAndrew Gerrand2012-02-211-5/+5
| | | | | | | | Fixes issue 3051. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5683056
* doc: update install.html for binary distros, add install-source.htmlAndrew Gerrand2012-02-141-0/+475
R=bsiegert, rsc, r CC=golang-dev http://codereview.appspot.com/5605047