Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 1 | #!/bin/rc -e |
| 2 | # Copyright 2012 The Go Authors. All rights reserved. |
| 3 | # Use of this source code is governed by a BSD-style |
| 4 | # license that can be found in the LICENSE file. |
| 5 | |
David du Colombier | b46b942 | 2015-01-13 08:01:18 +0100 | [diff] [blame] | 6 | # See golang.org/s/go15bootstrap for an overview of the build process. |
| 7 | |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 8 | # Environment variables that control make.rc: |
| 9 | # |
| 10 | # GOROOT_FINAL: The expected final Go root, baked into binaries. |
| 11 | # The default is the location of the Go tree during the build. |
| 12 | # |
| 13 | # GOHOSTARCH: The architecture for host tools (compilers and |
| 14 | # binaries). Binaries of this type must be executable on the current |
| 15 | # system, so the only common reason to set this is to set |
| 16 | # GOHOSTARCH=386 on an amd64 machine. |
| 17 | # |
| 18 | # GOARCH: The target architecture for installed packages and tools. |
| 19 | # |
| 20 | # GOOS: The target operating system for installed packages and tools. |
| 21 | # |
Jeremy Jackins | 7354978 | 2015-05-28 16:13:23 +0900 | [diff] [blame] | 22 | # GO_GCFLAGS: Additional go tool compile arguments to use when |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 23 | # building the packages and commands. |
| 24 | # |
Jeremy Jackins | 7354978 | 2015-05-28 16:13:23 +0900 | [diff] [blame] | 25 | # GO_LDFLAGS: Additional go tool link arguments to use when |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 26 | # building the commands. |
| 27 | # |
Anthony Martin | f08acae | 2013-02-26 09:25:46 -0800 | [diff] [blame] | 28 | # CGO_ENABLED: Controls cgo usage during the build. Set it to 1 |
| 29 | # to include all cgo related files, .c and .go file with "cgo" |
| 30 | # build directive, in the build. Set it to 0 to ignore them. |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 31 | |
| 32 | rfork e |
Anthony Martin | f08acae | 2013-02-26 09:25:46 -0800 | [diff] [blame] | 33 | if(! test -f run.rc){ |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 34 | echo 'make.rc must be run from $GOROOT/src' >[1=2] |
| 35 | exit wrongdir |
| 36 | } |
| 37 | |
| 38 | # Clean old generated file that will cause problems in the build. |
Russ Cox | 220a6de | 2014-09-08 00:06:45 -0400 | [diff] [blame] | 39 | rm -f ./runtime/runtime_defs.go |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 40 | |
| 41 | # Determine the host compiler toolchain. |
| 42 | eval `{grep '^(CC|LD|O)=' /$objtype/mkfile} |
| 43 | |
Russ Cox | c1e026a | 2017-10-28 09:00:35 -0400 | [diff] [blame] | 44 | vflag=() |
| 45 | if(~ $1 -v) { |
| 46 | vflag=(-v) |
| 47 | shift |
| 48 | } |
| 49 | |
| 50 | |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 51 | GOROOT = `{cd .. && pwd} |
David du Colombier | b46b942 | 2015-01-13 08:01:18 +0100 | [diff] [blame] | 52 | if(! ~ $#GOROOT_BOOTSTRAP 1) |
| 53 | GOROOT_BOOTSTRAP = $home/go1.4 |
Wei Congrui | a164a2f | 2017-08-22 13:36:19 +0800 | [diff] [blame] | 54 | for(p in $path){ |
| 55 | if(! test -x $GOROOT_BOOTSTRAP/bin/go){ |
| 56 | if(go_exe = `{path=$p whatis go}){ |
| 57 | goroot = `{GOROOT='' $go_exe env GOROOT} |
| 58 | if(! ~ $goroot $GOROOT){ |
| 59 | GOROOT_BOOTSTRAP = $goroot |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | } |
David du Colombier | b46b942 | 2015-01-13 08:01:18 +0100 | [diff] [blame] | 64 | if(! test -x $GOROOT_BOOTSTRAP/bin/go){ |
| 65 | echo 'ERROR: Cannot find '$GOROOT_BOOTSTRAP'/bin/go.' >[1=2] |
| 66 | echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4.' >[1=2] |
| 67 | exit bootstrap |
| 68 | } |
Wei Congrui | a164a2f | 2017-08-22 13:36:19 +0800 | [diff] [blame] | 69 | if(~ $GOROOT_BOOTSTRAP $GOROOT){ |
| 70 | echo 'ERROR: $GOROOT_BOOTSTRAP must not be set to $GOROOT' >[1=2] |
| 71 | echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4.' >[1=2] |
| 72 | exit bootstrap |
| 73 | } |
Russ Cox | c1e026a | 2017-10-28 09:00:35 -0400 | [diff] [blame] | 74 | |
| 75 | echo 'Building Go cmd/dist using '^$GOROOT_BOOTSTRAP |
| 76 | if(~ $#vflag 1) |
| 77 | echo cmd/dist |
Russ Cox | 1fac6d1 | 2015-01-14 15:14:54 -0500 | [diff] [blame] | 78 | GOROOT=$GOROOT_BOOTSTRAP GOOS='' GOARCH='' $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 79 | |
| 80 | eval `{./cmd/dist/dist env -9} |
Russ Cox | c1e026a | 2017-10-28 09:00:35 -0400 | [diff] [blame] | 81 | if(~ $#vflag 1) |
| 82 | echo |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 83 | |
| 84 | if(~ $1 --dist-tool){ |
| 85 | # Stop after building dist tool. |
| 86 | mkdir -p $GOTOOLDIR |
| 87 | if(! ~ $2 '') |
| 88 | cp cmd/dist/dist $2 |
| 89 | mv cmd/dist/dist $GOTOOLDIR/dist |
| 90 | exit |
| 91 | } |
| 92 | |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 93 | buildall = -a |
Russ Cox | aedb79f | 2017-10-23 21:57:54 -0400 | [diff] [blame] | 94 | if(~ $1 --no-clean) { |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 95 | buildall = () |
Russ Cox | aedb79f | 2017-10-23 21:57:54 -0400 | [diff] [blame] | 96 | shift |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 97 | } |
Russ Cox | aedb79f | 2017-10-23 21:57:54 -0400 | [diff] [blame] | 98 | # Run dist bootstrap to complete make.bash. |
| 99 | # Bootstrap installs a proper cmd/dist, built with the new toolchain. |
| 100 | # Throw ours, built with Go 1.4, away after bootstrap. |
Russ Cox | c1e026a | 2017-10-28 09:00:35 -0400 | [diff] [blame] | 101 | ./cmd/dist/dist bootstrap $vflag $buildall $* |
Russ Cox | aedb79f | 2017-10-23 21:57:54 -0400 | [diff] [blame] | 102 | rm -f ./cmd/dist/dist |
Anthony Martin | 3859032 | 2012-05-01 22:32:46 -0700 | [diff] [blame] | 103 | |
Russ Cox | aedb79f | 2017-10-23 21:57:54 -0400 | [diff] [blame] | 104 | # DO NOT ADD ANY NEW CODE HERE. |
| 105 | # The bootstrap+rm above are the final step of make.rc. |
| 106 | # If something must be added, add it to cmd/dist's cmdbootstrap, |
| 107 | # to avoid needing three copies in three different shell languages |
| 108 | # (make.bash, make.bat, make.rc). |