github.com/spotify/syslog-redirector-golang@v0.0.0-20140320174030-4859f03d829a/doc/install-source.html (about) 1 <!--{ 2 "Title": "Installing Go from source", 3 "Path": "/doc/install/source" 4 }--> 5 6 <h2 id="introduction">Introduction</h2> 7 8 <p> 9 Go is an open source project, distributed under a 10 <a href="/LICENSE">BSD-style license</a>. 11 This document explains how to check out the sources, 12 build them on your own machine, and run them. 13 </p> 14 15 <p> 16 Most users don't need to do this, and will instead install 17 from precompiled binary packages as described in 18 <a href="/doc/install">Getting Started</a>, 19 a much simpler process. 20 If you want to help develop what goes into those precompiled 21 packages, though, read on. 22 </p> 23 24 <div class="detail"> 25 26 <p> 27 There are two official Go compiler tool chains. 28 This document focuses on the <code>gc</code> Go 29 compiler and tools (<code>6g</code>, <code>8g</code> etc.). 30 For information on how to work on <code>gccgo</code>, a more traditional 31 compiler using the GCC back end, see 32 <a href="/doc/install/gccgo">Setting up and using gccgo</a>. 33 </p> 34 35 <p> 36 The Go compilers support three instruction sets. 37 There are important differences in the quality of the compilers for the different 38 architectures. 39 </p> 40 41 <dl> 42 <dt> 43 <code>amd64</code> (a.k.a. <code>x86-64</code>); <code>6g,6l,6c,6a</code> 44 </dt> 45 <dd> 46 A mature implementation. The compiler has an effective 47 optimizer (registerizer) and generates good code (although 48 <code>gccgo</code> can do noticeably better sometimes). 49 </dd> 50 <dt> 51 <code>386</code> (a.k.a. <code>x86</code> or <code>x86-32</code>); <code>8g,8l,8c,8a</code> 52 </dt> 53 <dd> 54 Comparable to the <code>amd64</code> port. 55 </dd> 56 <dt> 57 <code>arm</code> (a.k.a. <code>ARM</code>); <code>5g,5l,5c,5a</code> 58 </dt> 59 <dd> 60 Supports Linux, FreeBSD and NetBSD binaries. Less widely used than the other ports. 61 </dd> 62 </dl> 63 64 <p> 65 Except for things like low-level operating system interface code, the run-time 66 support is the same in all ports and includes a mark-and-sweep garbage 67 collector, efficient array and string slicing, and support for efficient 68 goroutines, such as stacks that grow and shrink on demand. 69 </p> 70 71 <p> 72 The compilers can target the FreeBSD, Linux, NetBSD, OpenBSD, OS X (Darwin), Plan 9, 73 and Windows operating systems. 74 The full set of supported combinations is listed in the discussion of 75 <a href="#environment">environment variables</a> below. 76 </p> 77 78 </div> 79 80 <h2 id="ctools">Install C tools, if needed</h2> 81 82 <p> 83 The Go tool chain is written in C. To build it, you need a C compiler installed. 84 Please refer to the <a href="http://code.google.com/p/go-wiki/wiki/InstallFromSource#Install_C_tools">InstallFromSource</a> 85 page on the Go community Wiki for operating system specific instructions. 86 </p> 87 88 <h2 id="mercurial">Install Mercurial, if needed</h2> 89 90 <p> 91 To perform the next step you must have Mercurial installed. (Check that you 92 have an <code>hg</code> command.) 93 </p> 94 95 <p> 96 If you do not have a working Mercurial installation, 97 follow the instructions on the 98 <a href="http://mercurial.selenic.com/downloads/">Mercurial downloads</a> page. 99 </p> 100 101 <p> 102 Mercurial versions 1.7.x and up require the configuration of 103 <a href="http://mercurial.selenic.com/wiki/CACertificates">Certification Authorities</a> 104 (CAs). Error messages of the form: 105 </p> 106 107 <pre> 108 warning: code.google.com certificate with fingerprint b1:af: ... bc not verified (check hostfingerprints or web.cacerts config setting) 109 </pre> 110 111 <p> 112 when using Mercurial indicate that the CAs are missing. 113 Check your Mercurial version (<code>hg --version</code>) and 114 <a href="http://mercurial.selenic.com/wiki/CACertificates#Configuration_of_HTTPS_certificate_authorities">configure the CAs</a> 115 if necessary. 116 </p> 117 118 119 <h2 id="fetch">Fetch the repository</h2> 120 121 <p>Go will install to a directory named <code>go</code>. 122 Change to the directory that will be its parent 123 and make sure the <code>go</code> directory does not exist. 124 Then check out the repository:</p> 125 126 <pre> 127 $ hg clone -u release https://code.google.com/p/go 128 </pre> 129 130 <h2 id="head">(Optional) Switch to the default branch</h2> 131 132 <p>If you intend to modify the go source code, and 133 <a href="/doc/contribute.html">contribute your changes</a> 134 to the project, then move your repository 135 off the release branch, and onto the default (development) branch. 136 Otherwise, skip this step.</p> 137 138 <pre> 139 $ hg update default 140 </pre> 141 142 <h2 id="install">Install Go</h2> 143 144 <p> 145 To build the Go distribution, run 146 </p> 147 148 <pre> 149 $ cd go/src 150 $ ./all.bash 151 </pre> 152 153 <p> 154 (To build under Windows use <code>all.bat</code>.) 155 </p> 156 157 <p> 158 If all goes well, it will finish by printing output like: 159 </p> 160 161 <pre> 162 ALL TESTS PASSED 163 164 --- 165 Installed Go for linux/amd64 in /home/you/go. 166 Installed commands in /home/you/go/bin. 167 *** You need to add /home/you/go/bin to your $PATH. *** 168 </pre> 169 170 <p> 171 where the details on the last few lines reflect the operating system, 172 architecture, and root directory used during the install. 173 </p> 174 175 <div class="detail"> 176 <p> 177 For more information about ways to control the build, see the discussion of 178 <a href="#environment">environment variables</a> below. 179 </p> 180 </div> 181 182 183 <h2 id="testing">Testing your installation</h2> 184 185 <p> 186 Check that Go is installed correctly by building a simple program. 187 </p> 188 189 <p> 190 Create a file named <code>hello.go</code> and put the following program in it: 191 </p> 192 193 <pre> 194 package main 195 196 import "fmt" 197 198 func main() { 199 fmt.Printf("hello, world\n") 200 } 201 </pre> 202 203 <p> 204 Then run it with the <code>go</code> tool: 205 </p> 206 207 <pre> 208 $ go run hello.go 209 hello, world 210 </pre> 211 212 <p> 213 If you see the "hello, world" message then Go is installed correctly. 214 </p> 215 216 <h2 id="gopath">Set up your work environment</h2> 217 218 <p> 219 You're almost done. 220 You just need to do a little more setup. 221 </p> 222 223 <p> 224 <a href="/doc/code.html" class="download" id="start"> 225 <span class="big">How to Write Go Code</span> 226 <span class="desc">Learn how to set up and use the Go tools</span> 227 </a> 228 </p> 229 230 <p> 231 The <a href="/doc/code.html">How to Write Go Code</a> document 232 provides <b>essential setup instructions</b> for using the Go tools. 233 </p> 234 235 236 <h2 id="tools">Install additional tools</h2> 237 238 <p> 239 The source code for several Go tools (including <a href="/cmd/godoc/">godoc</a>) 240 is kept in <a href="https://code.google.com/p/go.tools">the go.tools repository</a>. 241 To install all of them, run the <code>go</code> <code>get</code> command: 242 </p> 243 244 <pre> 245 $ go get code.google.com/p/go.tools/cmd/... 246 </pre> 247 248 <p> 249 Or if you just want to install a specific command (<code>godoc</code> in this case): 250 </p> 251 252 <pre> 253 $ go get code.google.com/p/go.tools/cmd/godoc 254 </pre> 255 256 <p> 257 To install these tools, the <code>go</code> <code>get</code> command requires 258 that <a href="#mercurial">Mercurial</a> be installed locally. 259 </p> 260 261 <p> 262 You must also have a workspace (<code>GOPATH</code>) set up; 263 see <a href="/doc/code.html">How to Write Go Code</a> for the details. 264 </p> 265 266 <p> 267 <b>Note</b>: The <code>go</code> command will install the <code>godoc</code> 268 binary to <code>$GOROOT/bin</code> (or <code>$GOBIN</code>) and the 269 <code>cover</code> and <code>vet</code> binaries to 270 <code>$GOROOT/pkg/tool/$GOOS_$GOARCH</code>. 271 You can access the latter commands with 272 "<code>go</code> <code>tool</code> <code>cover</code>" and 273 "<code>go</code> <code>tool</code> <code>vet</code>". 274 </p> 275 276 <h2 id="community">Community resources</h2> 277 278 <p> 279 The usual community resources such as 280 <code>#go-nuts</code> on the <a href="http://freenode.net/">Freenode</a> IRC server 281 and the 282 <a href="http://groups.google.com/group/golang-nuts">Go Nuts</a> 283 mailing list have active developers that can help you with problems 284 with your installation or your development work. 285 For those who wish to keep up to date, 286 there is another mailing list, <a href="http://groups.google.com/group/golang-checkins">golang-checkins</a>, 287 that receives a message summarizing each checkin to the Go repository. 288 </p> 289 290 <p> 291 Bugs can be reported using the <a href="http://code.google.com/p/go/issues/list">Go issue tracker</a>. 292 </p> 293 294 295 <h2 id="releases">Keeping up with releases</h2> 296 297 <p> 298 The Go project maintains a stable tag in its Mercurial repository: 299 <code>release</code>. 300 </p> 301 302 <p> 303 The <code>release</code> tag refers to the current stable release of Go. 304 Most Go users should use this version. New releases are announced on the 305 <a href="http://groups.google.com/group/golang-announce">golang-announce</a> 306 mailing list. 307 </p> 308 309 <p> 310 To update an existing tree to the latest release, you can run: 311 </p> 312 313 <pre> 314 $ cd go/src 315 $ hg pull 316 $ hg update release 317 $ ./all.bash 318 </pre> 319 320 321 <h2 id="environment">Optional environment variables</h2> 322 323 <p> 324 The Go compilation environment can be customized by environment variables. 325 <i>None is required by the build</i>, but you may wish to set some 326 to override the defaults. 327 </p> 328 329 <ul> 330 <li><code>$GOROOT</code> 331 <p> 332 The root of the Go tree, often <code>$HOME/go</code>. 333 Its value is built into the tree when it is compiled, and 334 defaults to the parent of the directory where <code>all.bash</code> was run. 335 There is no need to set this unless you want to switch between multiple 336 local copies of the repository. 337 </p> 338 339 <li><code>$GOROOT_FINAL</code> 340 <p> 341 The value assumed by installed binaries and scripts when 342 <code>$GOROOT</code> is not set explicitly. 343 It defaults to the value of <code>$GOROOT</code>. 344 If you want to build the Go tree in one location 345 but move it elsewhere after the build, set 346 <code>$GOROOT_FINAL</code> to the eventual location. 347 </p> 348 349 <li><code>$GOOS</code> and <code>$GOARCH</code> 350 <p> 351 The name of the target operating system and compilation architecture. 352 These default to the values of <code>$GOHOSTOS</code> and 353 <code>$GOHOSTARCH</code> respectively (described below). 354 355 <p> 356 Choices for <code>$GOOS</code> are 357 <code>darwin</code> (Mac OS X 10.6 and above), <code>freebsd</code>, 358 <code>linux</code>, <code>netbsd</code>, <code>openbsd</code>, 359 <code>plan9</code>, and <code>windows</code>. 360 Choices for <code>$GOARCH</code> are 361 <code>amd64</code> (64-bit x86, the most mature port), 362 <code>386</code> (32-bit x86), and <code>arm</code> (32-bit ARM). 363 The valid combinations of <code>$GOOS</code> and <code>$GOARCH</code> are: 364 <table cellpadding="0"> 365 <tr> 366 <th width="50"></th><th align="left" width="100"><code>$GOOS</code></th> <th align="left" width="100"><code>$GOARCH</code></th> 367 </tr> 368 <tr> 369 <td></td><td><code>darwin</code></td> <td><code>386</code></td> 370 </tr> 371 <tr> 372 <td></td><td><code>darwin</code></td> <td><code>amd64</code></td> 373 </tr> 374 <tr> 375 <td></td><td><code>freebsd</code></td> <td><code>386</code></td> 376 </tr> 377 <tr> 378 <td></td><td><code>freebsd</code></td> <td><code>amd64</code></td> 379 </tr> 380 <tr> 381 <td></td><td><code>freebsd</code></td> <td><code>arm</code></td> 382 </tr> 383 <tr> 384 <td></td><td><code>linux</code></td> <td><code>386</code></td> 385 </tr> 386 <tr> 387 <td></td><td><code>linux</code></td> <td><code>amd64</code></td> 388 </tr> 389 <tr> 390 <td></td><td><code>linux</code></td> <td><code>arm</code></td> 391 </tr> 392 <tr> 393 <td></td><td><code>netbsd</code></td> <td><code>386</code></td> 394 </tr> 395 <tr> 396 <td></td><td><code>netbsd</code></td> <td><code>amd64</code></td> 397 </tr> 398 <tr> 399 <td></td><td><code>netbsd</code></td> <td><code>arm</code></td> 400 </tr> 401 <tr> 402 <td></td><td><code>openbsd</code></td> <td><code>386</code></td> 403 </tr> 404 <tr> 405 <td></td><td><code>openbsd</code></td> <td><code>amd64</code></td> 406 </tr> 407 <tr> 408 <td></td><td><code>plan9</code></td> <td><code>386</code></td> 409 </tr> 410 <tr> 411 <td></td><td><code>plan9</code></td> <td><code>amd64</code></td> 412 </tr> 413 <tr> 414 <td></td><td><code>windows</code></td> <td><code>386</code></td> 415 </tr> 416 <tr> 417 <td></td><td><code>windows</code></td> <td><code>amd64</code></td> 418 </tr> 419 </table> 420 421 <li><code>$GOHOSTOS</code> and <code>$GOHOSTARCH</code> 422 <p> 423 The name of the host operating system and compilation architecture. 424 These default to the local system's operating system and 425 architecture. 426 </p> 427 428 <p> 429 Valid choices are the same as for <code>$GOOS</code> and 430 <code>$GOARCH</code>, listed above. 431 The specified values must be compatible with the local system. 432 For example, you should not set <code>$GOHOSTARCH</code> to 433 <code>arm</code> on an x86 system. 434 </p> 435 436 <li><code>$GOBIN</code> 437 <p> 438 The location where Go binaries will be installed. 439 The default is <code>$GOROOT/bin</code>. 440 After installing, you will want to arrange to add this 441 directory to your <code>$PATH</code>, so you can use the tools. 442 If <code>$GOBIN</code> is set, the <a href="/cmd/go">go command</a> 443 installs all commands there. 444 </p> 445 446 <li><code>$GO386</code> (for <code>386</code> only, default is auto-detected 447 if built natively, <code>387</code> if not) 448 <p> 449 This controls the code generated by 8g to use either the 387 floating-point unit 450 (set to <code>387</code>) or SSE2 instructions (set to <code>sse2</code>) for 451 floating point computations. 452 </p> 453 <ul> 454 <li><code>GO386=387</code>: use x87 for floating point operations; should support all x86 chips (Pentium MMX or later). 455 <li><code>GO386=sse2</code>: use SSE2 for floating point operations; has better performance than 387, but only available on Pentium 4/Opteron/Athlon 64 or later. 456 </ul> 457 458 <li><code>$GOARM</code> (for <code>arm</code> only; default is auto-detected if building 459 on the target processor, 6 if not) 460 <p> 461 This sets the ARM floating point co-processor architecture version the run-time 462 should target. If you are compiling on the target system, its value will be auto-detected. 463 </p> 464 <ul> 465 <li><code>GOARM=5</code>: use software floating point; when CPU doesn't have VFP co-processor 466 <li><code>GOARM=6</code>: use VFPv1 only; default if cross compiling; usually ARM11 or better cores (VFPv2 or better is also supported) 467 <li><code>GOARM=7</code>: use VFPv3; usually Cortex-A cores 468 </ul> 469 <p> 470 If in doubt, leave this variable unset, and adjust it if required 471 when you first run the Go executable. 472 The <a href="http://code.google.com/p/go-wiki/wiki/GoArm">GoARM</a> page 473 on the <a href="http://code.google.com/p/go-wiki/w/list">Go community wiki</a> 474 contains further details regarding Go's ARM support. 475 </p> 476 477 </ul> 478 479 <p> 480 Note that <code>$GOARCH</code> and <code>$GOOS</code> identify the 481 <em>target</em> environment, not the environment you are running on. 482 In effect, you are always cross-compiling. 483 By architecture, we mean the kind of binaries 484 that the target environment can run: 485 an x86-64 system running a 32-bit-only operating system 486 must set <code>GOARCH</code> to <code>386</code>, 487 not <code>amd64</code>. 488 </p> 489 490 <p> 491 If you choose to override the defaults, 492 set these variables in your shell profile (<code>$HOME/.bashrc</code>, 493 <code>$HOME/.profile</code>, or equivalent). The settings might look 494 something like this: 495 </p> 496 497 <pre> 498 export GOROOT=$HOME/go 499 export GOARCH=amd64 500 export GOOS=linux 501 </pre> 502 503 <p> 504 although, to reiterate, none of these variables needs to be set to build, 505 install, and develop the Go tree. 506 </p>