]> Cypherpunks.ru repositories - gostls13.git/blob - src/make.rc
lib9: enable on Plan 9
[gostls13.git] / src / make.rc
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
6 # Environment variables that control make.rc:
7 #
8 # GOROOT_FINAL: The expected final Go root, baked into binaries.
9 # The default is the location of the Go tree during the build.
10 #
11 # GOHOSTARCH: The architecture for host tools (compilers and
12 # binaries).  Binaries of this type must be executable on the current
13 # system, so the only common reason to set this is to set
14 # GOHOSTARCH=386 on an amd64 machine.
15 #
16 # GOARCH: The target architecture for installed packages and tools.
17 #
18 # GOOS: The target operating system for installed packages and tools.
19 #
20 # GO_GCFLAGS: Additional 5g/6g/8g arguments to use when
21 # building the packages and commands.
22 #
23 # GO_LDFLAGS: Additional 5l/6l/8l arguments to use when
24 # building the commands.
25 #
26 # GO_CCFLAGS: Additional 5c/6c/8c arguments to use when
27 # building.
28 #
29 # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
30 # to include all cgo related files, .c and .go file with "cgo"
31 # build directive, in the build. Set it to 0 to ignore them.
32
33 rfork e
34 if(! test -f run.rc){
35         echo 'make.rc must be run from $GOROOT/src' >[1=2]
36         exit wrongdir
37 }
38
39 # Generate libc_plan9.h.
40 ../include/plan9/mklibc.rc > ../include/plan9/libc_plan9.h
41
42 # Clean old generated file that will cause problems in the build.
43 rm -f ./pkg/runtime/runtime_defs.go
44
45 # Determine the host compiler toolchain.
46 eval `{grep '^(CC|LD|O)=' /$objtype/mkfile}
47
48 echo '# Building C bootstrap tool.'
49 echo cmd/dist
50 GOROOT = `{cd .. && pwd}
51 if(! ~ $#GOROOT_FINAL 1)
52         GOROOT_FINAL = $GOROOT
53 DEFGOROOT='-DGOROOT_FINAL="'$GOROOT_FINAL'"'
54
55 for(i in cmd/dist/*.c)
56         $CC -FTVwp+ -DPLAN9 $DEFGOROOT $i
57 $LD -o cmd/dist/dist *.$O
58 rm *.$O
59
60 eval `{./cmd/dist/dist env -9}
61 echo
62
63 if(~ $1 --dist-tool){
64         # Stop after building dist tool.
65         mkdir -p $GOTOOLDIR
66         if(! ~ $2 '')
67                 cp cmd/dist/dist $2
68         mv cmd/dist/dist $GOTOOLDIR/dist
69         exit
70 }
71
72 echo '# Building compilers and Go bootstrap tool for host,' $GOHOSTOS/$GOHOSTARCH^.
73 buildall = -a
74 if(~ $1 --no-clean)
75         buildall = ()
76 ./cmd/dist/dist bootstrap $buildall -v # builds go_bootstrap
77 # Delay move of dist tool to now, because bootstrap may clear tool directory.
78 mv cmd/dist/dist $GOTOOLDIR/dist
79 $GOTOOLDIR/go_bootstrap clean -i std
80 echo
81
82 # Run only one process at a time on 9vx.
83 if(~ $sysname vx32)
84         pflag = (-p 1)
85
86 if(! ~ $GOHOSTARCH $GOARCH || ! ~ $GOHOSTOS $GOOS){
87         echo '# Building packages and commands for host,' $GOHOSTOS/$GOHOSTARCH^.
88         GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \
89                 $GOTOOLDIR/go_bootstrap install -ccflags $"GO_CCFLAGS -gcflags $"GO_GCFLAGS -ldflags $"GO_LDFLAGS -v $pflag std
90         echo
91 }
92
93 echo '# Building packages and commands for' $GOOS/$GOARCH^.
94 $GOTOOLDIR/go_bootstrap install -ccflags $"GO_CCFLAGS -gcflags $"GO_GCFLAGS -ldflags $"GO_LDFLAGS -v $pflag std
95 echo
96
97 rm -f $GOTOOLDIR/go_bootstrap
98
99 if(! ~ $1 --no-banner)
100         $GOTOOLDIR/dist banner
101
102 status=''