blob: 7704b1241738bee9cd7bb9dd333a5c6df2a4fc76 [file] [log] [blame]
Anthony Martin38590322012-05-01 22:32:46 -07001#!/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 Colombierb46b9422015-01-13 08:01:18 +01006# See golang.org/s/go15bootstrap for an overview of the build process.
7
Anthony Martin38590322012-05-01 22:32:46 -07008# 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 Jackins73549782015-05-28 16:13:23 +090022# GO_GCFLAGS: Additional go tool compile arguments to use when
Anthony Martin38590322012-05-01 22:32:46 -070023# building the packages and commands.
24#
Jeremy Jackins73549782015-05-28 16:13:23 +090025# GO_LDFLAGS: Additional go tool link arguments to use when
Anthony Martin38590322012-05-01 22:32:46 -070026# building the commands.
27#
Anthony Martinf08acae2013-02-26 09:25:46 -080028# 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 Martin38590322012-05-01 22:32:46 -070031
32rfork e
Anthony Martinf08acae2013-02-26 09:25:46 -080033if(! test -f run.rc){
Anthony Martin38590322012-05-01 22:32:46 -070034 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 Cox220a6de2014-09-08 00:06:45 -040039rm -f ./runtime/runtime_defs.go
Anthony Martin38590322012-05-01 22:32:46 -070040
41# Determine the host compiler toolchain.
42eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
43
Jeremy Jackins73549782015-05-28 16:13:23 +090044echo '##### Building Go bootstrap tool.'
Anthony Martin38590322012-05-01 22:32:46 -070045echo cmd/dist
46GOROOT = `{cd .. && pwd}
David du Colombierb46b9422015-01-13 08:01:18 +010047if(! ~ $#GOROOT_BOOTSTRAP 1)
48 GOROOT_BOOTSTRAP = $home/go1.4
Wei Congruia164a2f2017-08-22 13:36:19 +080049for(p in $path){
50 if(! test -x $GOROOT_BOOTSTRAP/bin/go){
51 if(go_exe = `{path=$p whatis go}){
52 goroot = `{GOROOT='' $go_exe env GOROOT}
53 if(! ~ $goroot $GOROOT){
54 GOROOT_BOOTSTRAP = $goroot
55 }
56 }
57 }
58}
David du Colombierb46b9422015-01-13 08:01:18 +010059if(! test -x $GOROOT_BOOTSTRAP/bin/go){
60 echo 'ERROR: Cannot find '$GOROOT_BOOTSTRAP'/bin/go.' >[1=2]
61 echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4.' >[1=2]
62 exit bootstrap
63}
Wei Congruia164a2f2017-08-22 13:36:19 +080064if(~ $GOROOT_BOOTSTRAP $GOROOT){
65 echo 'ERROR: $GOROOT_BOOTSTRAP must not be set to $GOROOT' >[1=2]
66 echo 'Set $GOROOT_BOOTSTRAP to a working Go tree >= Go 1.4.' >[1=2]
67 exit bootstrap
68}
David du Colombierb46b9422015-01-13 08:01:18 +010069rm -f cmd/dist/dist
Russ Cox1fac6d12015-01-14 15:14:54 -050070GOROOT=$GOROOT_BOOTSTRAP GOOS='' GOARCH='' $GOROOT_BOOTSTRAP/bin/go build -o cmd/dist/dist ./cmd/dist
Anthony Martin38590322012-05-01 22:32:46 -070071
72eval `{./cmd/dist/dist env -9}
73echo
74
75if(~ $1 --dist-tool){
76 # Stop after building dist tool.
77 mkdir -p $GOTOOLDIR
78 if(! ~ $2 '')
79 cp cmd/dist/dist $2
80 mv cmd/dist/dist $GOTOOLDIR/dist
81 exit
82}
83
Anthony Martin38590322012-05-01 22:32:46 -070084buildall = -a
Russ Coxaedb79f2017-10-23 21:57:54 -040085if(~ $1 --no-clean) {
Anthony Martin38590322012-05-01 22:32:46 -070086 buildall = ()
Russ Coxaedb79f2017-10-23 21:57:54 -040087 shift
Anthony Martin38590322012-05-01 22:32:46 -070088}
Russ Coxaedb79f2017-10-23 21:57:54 -040089# Run dist bootstrap to complete make.bash.
90# Bootstrap installs a proper cmd/dist, built with the new toolchain.
91# Throw ours, built with Go 1.4, away after bootstrap.
92./cmd/dist/dist bootstrap -v $buildall $*
93rm -f ./cmd/dist/dist
Anthony Martin38590322012-05-01 22:32:46 -070094
Russ Coxaedb79f2017-10-23 21:57:54 -040095# DO NOT ADD ANY NEW CODE HERE.
96# The bootstrap+rm above are the final step of make.rc.
97# If something must be added, add it to cmd/dist's cmdbootstrap,
98# to avoid needing three copies in three different shell languages
99# (make.bash, make.bat, make.rc).