github.com/varialus/godfly@v0.0.0-20130904042352-1934f9f095ab/src/make.rc (about) 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 # Clean old generated file that will cause problems in the build. 40 rm -f ./pkg/runtime/runtime_defs.go 41 42 # Determine the host compiler toolchain. 43 eval `{grep '^(CC|LD|O)=' /$objtype/mkfile} 44 45 echo '# Building C bootstrap tool.' 46 echo cmd/dist 47 GOROOT = `{cd .. && pwd} 48 if(! ~ $#GOROOT_FINAL 1) 49 GOROOT_FINAL = $GOROOT 50 DEFGOROOT='-DGOROOT_FINAL="'$GOROOT_FINAL'"' 51 52 for(i in cmd/dist/*.c) 53 $CC -FTVwp+ -DPLAN9 $DEFGOROOT $i 54 $LD -o cmd/dist/dist *.$O 55 rm *.$O 56 57 eval `{./cmd/dist/dist env -9} 58 echo 59 60 if(~ $1 --dist-tool){ 61 # Stop after building dist tool. 62 mkdir -p $GOTOOLDIR 63 if(! ~ $2 '') 64 cp cmd/dist/dist $2 65 mv cmd/dist/dist $GOTOOLDIR/dist 66 exit 67 } 68 69 echo '# Building compilers and Go bootstrap tool for host,' $GOHOSTOS/$GOHOSTARCH^. 70 buildall = -a 71 if(~ $1 --no-clean) 72 buildall = () 73 ./cmd/dist/dist bootstrap $buildall -v # builds go_bootstrap 74 # Delay move of dist tool to now, because bootstrap may clear tool directory. 75 mv cmd/dist/dist $GOTOOLDIR/dist 76 $GOTOOLDIR/go_bootstrap clean -i std 77 echo 78 79 # Run only one process at a time on 9vx. 80 if(~ $sysname vx32) 81 pflag = (-p 1) 82 83 if(! ~ $GOHOSTARCH $GOARCH || ! ~ $GOHOSTOS $GOOS){ 84 echo '# Building packages and commands for host,' $GOHOSTOS/$GOHOSTARCH^. 85 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH \ 86 $GOTOOLDIR/go_bootstrap install -ccflags $"GO_CCFLAGS -gcflags $"GO_GCFLAGS -ldflags $"GO_LDFLAGS -v $pflag std 87 echo 88 } 89 90 echo '# Building packages and commands for' $GOOS/$GOARCH^. 91 $GOTOOLDIR/go_bootstrap install -ccflags $"GO_CCFLAGS -gcflags $"GO_GCFLAGS -ldflags $"GO_LDFLAGS -v $pflag std 92 echo 93 94 rm -f $GOTOOLDIR/go_bootstrap 95 96 if(! ~ $1 --no-banner) 97 $GOTOOLDIR/dist banner 98 99 status=''