github.com/varialus/godfly@v0.0.0-20130904042352-1934f9f095ab/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 The document <a href="/doc/code.html">How to Write Go Code</a> explains how to 220 set up a work environment in which to build and test Go code. 221 </p> 222 223 <h2 id="community">Community resources</h2> 224 225 <p> 226 The usual community resources such as 227 <code>#go-nuts</code> on the <a href="http://freenode.net/">Freenode</a> IRC server 228 and the 229 <a href="http://groups.google.com/group/golang-nuts">Go Nuts</a> 230 mailing list have active developers that can help you with problems 231 with your installation or your development work. 232 For those who wish to keep up to date, 233 there is another mailing list, <a href="http://groups.google.com/group/golang-checkins">golang-checkins</a>, 234 that receives a message summarizing each checkin to the Go repository. 235 </p> 236 237 <p> 238 Bugs can be reported using the <a href="http://code.google.com/p/go/issues/list">Go issue tracker</a>. 239 </p> 240 241 242 <h2 id="releases">Keeping up with releases</h2> 243 244 <p> 245 The Go project maintains a stable tag in its Mercurial repository: 246 <code>release</code>. 247 </p> 248 249 <p> 250 The <code>release</code> tag refers to the current stable release of Go. 251 Most Go users should use this version. New releases are announced on the 252 <a href="http://groups.google.com/group/golang-announce">golang-announce</a> 253 mailing list. 254 </p> 255 256 <p> 257 To update an existing tree to the latest release, you can run: 258 </p> 259 260 <pre> 261 $ cd go/src 262 $ hg pull 263 $ hg update release 264 $ ./all.bash 265 </pre> 266 267 268 <h2 id="environment">Optional environment variables</h2> 269 270 <p> 271 The Go compilation environment can be customized by environment variables. 272 <i>None is required by the build</i>, but you may wish to set some 273 to override the defaults. 274 </p> 275 276 <ul> 277 <li><code>$GOROOT</code> 278 <p> 279 The root of the Go tree, often <code>$HOME/go</code>. 280 Its value is built into the tree when it is compiled, and 281 defaults to the parent of the directory where <code>all.bash</code> was run. 282 There is no need to set this unless you want to switch between multiple 283 local copies of the repository. 284 </p> 285 286 <li><code>$GOROOT_FINAL</code> 287 <p> 288 The value assumed by installed binaries and scripts when 289 <code>$GOROOT</code> is not set explicitly. 290 It defaults to the value of <code>$GOROOT</code>. 291 If you want to build the Go tree in one location 292 but move it elsewhere after the build, set 293 <code>$GOROOT_FINAL</code> to the eventual location. 294 </p> 295 296 <li><code>$GOOS</code> and <code>$GOARCH</code> 297 <p> 298 The name of the target operating system and compilation architecture. 299 These default to the values of <code>$GOHOSTOS</code> and 300 <code>$GOHOSTARCH</code> respectively (described below). 301 302 <p> 303 Choices for <code>$GOOS</code> are 304 <code>darwin</code> (Mac OS X 10.6 and above), <code>freebsd</code>, 305 <code>linux</code>, <code>netbsd</code>, <code>openbsd</code>, 306 <code>plan9</code>, and <code>windows</code>. 307 Choices for <code>$GOARCH</code> are 308 <code>amd64</code> (64-bit x86, the most mature port), 309 <code>386</code> (32-bit x86), and <code>arm</code> (32-bit ARM). 310 The valid combinations of <code>$GOOS</code> and <code>$GOARCH</code> are: 311 <table cellpadding="0"> 312 <tr> 313 <th width="50"></th><th align="left" width="100"><code>$GOOS</code></th> <th align="left" width="100"><code>$GOARCH</code></th> 314 </tr> 315 <tr> 316 <td></td><td><code>darwin</code></td> <td><code>386</code></td> 317 </tr> 318 <tr> 319 <td></td><td><code>darwin</code></td> <td><code>amd64</code></td> 320 </tr> 321 <tr> 322 <td></td><td><code>freebsd</code></td> <td><code>386</code></td> 323 </tr> 324 <tr> 325 <td></td><td><code>freebsd</code></td> <td><code>amd64</code></td> 326 </tr> 327 <tr> 328 <td></td><td><code>freebsd</code></td> <td><code>arm</code></td> 329 </tr> 330 <tr> 331 <td></td><td><code>linux</code></td> <td><code>386</code></td> 332 </tr> 333 <tr> 334 <td></td><td><code>linux</code></td> <td><code>amd64</code></td> 335 </tr> 336 <tr> 337 <td></td><td><code>linux</code></td> <td><code>arm</code></td> 338 </tr> 339 <tr> 340 <td></td><td><code>netbsd</code></td> <td><code>386</code></td> 341 </tr> 342 <tr> 343 <td></td><td><code>netbsd</code></td> <td><code>amd64</code></td> 344 </tr> 345 <tr> 346 <td></td><td><code>netbsd</code></td> <td><code>arm</code></td> 347 </tr> 348 <tr> 349 <td></td><td><code>openbsd</code></td> <td><code>386</code></td> 350 </tr> 351 <tr> 352 <td></td><td><code>openbsd</code></td> <td><code>amd64</code></td> 353 </tr> 354 <tr> 355 <td></td><td><code>plan9</code></td> <td><code>386</code></td> 356 </tr> 357 <tr> 358 <td></td><td><code>plan9</code></td> <td><code>amd64</code></td> 359 </tr> 360 <tr> 361 <td></td><td><code>windows</code></td> <td><code>386</code></td> 362 </tr> 363 <tr> 364 <td></td><td><code>windows</code></td> <td><code>amd64</code></td> 365 </tr> 366 </table> 367 368 <li><code>$GOHOSTOS</code> and <code>$GOHOSTARCH</code> 369 <p> 370 The name of the host operating system and compilation architecture. 371 These default to the local system's operating system and 372 architecture. 373 </p> 374 375 <p> 376 Valid choices are the same as for <code>$GOOS</code> and 377 <code>$GOARCH</code>, listed above. 378 The specified values must be compatible with the local system. 379 For example, you should not set <code>$GOHOSTARCH</code> to 380 <code>arm</code> on an x86 system. 381 </p> 382 383 <li><code>$GOBIN</code> 384 <p> 385 The location where Go binaries will be installed. 386 The default is <code>$GOROOT/bin</code>. 387 After installing, you will want to arrange to add this 388 directory to your <code>$PATH</code>, so you can use the tools. 389 If <code>$GOBIN</code> is set, the <a href="/cmd/go">go command</a> 390 installs all commands there. 391 </p> 392 393 <li><code>$GO386</code> (for <code>386</code> only, default is auto-detected 394 if built natively, <code>387</code> if not) 395 <p> 396 This controls the code generated by 8g to use either the 387 floating-point unit 397 (set to <code>387</code>) or SSE2 instructions (set to <code>sse2</code>) for 398 floating point computations. 399 </p> 400 <ul> 401 <li><code>GO386=387</code>: use x87 for floating point operations; should support all x86 chips (Pentium MMX or later). 402 <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. 403 </ul> 404 405 <li><code>$GOARM</code> (for <code>arm</code> only; default is auto-detected if building 406 on the target processor, 6 if not) 407 <p> 408 This sets the ARM floating point co-processor architecture version the run-time 409 should target. If you are compiling on the target system, its value will be auto-detected. 410 </p> 411 <ul> 412 <li><code>GOARM=5</code>: use software floating point; when CPU doesn't have VFP co-processor 413 <li><code>GOARM=6</code>: use VFPv1 only; default if cross compiling; usually ARM11 or better cores (VFPv2 or better is also supported) 414 <li><code>GOARM=7</code>: use VFPv3; usually Cortex-A cores 415 </ul> 416 <p> 417 If in doubt, leave this variable unset, and adjust it if required 418 when you first run the Go executable. 419 The <a href="http://code.google.com/p/go-wiki/wiki/GoArm">GoARM</a> page 420 on the <a href="http://code.google.com/p/go-wiki/w/list">Go community wiki</a> 421 contains further details regarding Go's ARM support. 422 </p> 423 424 </ul> 425 426 <p> 427 Note that <code>$GOARCH</code> and <code>$GOOS</code> identify the 428 <em>target</em> environment, not the environment you are running on. 429 In effect, you are always cross-compiling. 430 By architecture, we mean the kind of binaries 431 that the target environment can run: 432 an x86-64 system running a 32-bit-only operating system 433 must set <code>GOARCH</code> to <code>386</code>, 434 not <code>amd64</code>. 435 </p> 436 437 <p> 438 If you choose to override the defaults, 439 set these variables in your shell profile (<code>$HOME/.bashrc</code>, 440 <code>$HOME/.profile</code>, or equivalent). The settings might look 441 something like this: 442 </p> 443 444 <pre> 445 export GOROOT=$HOME/go 446 export GOARCH=amd64 447 export GOOS=linux 448 </pre> 449 450 <p> 451 although, to reiterate, none of these variables needs to be set to build, 452 install, and develop the Go tree. 453 </p>