diff options
author | Alex Brainman <alex.brainman@gmail.com> | 2012-03-20 14:04:20 +1100 |
---|---|---|
committer | Alex Brainman <alex.brainman@gmail.com> | 2012-03-20 14:04:20 +1100 |
commit | d3c31fbd9cd1b4c4daab192fbd32b3fca769b528 (patch) | |
tree | ec4cb6478d67a47f67932358d10b5425d083c52e /src/make.bash | |
parent | d5175cdc2db0ccf7b9eda1310bc59e80a4f726c7 (diff) | |
download | go-d3c31fbd9cd1b4c4daab192fbd32b3fca769b528.tar.gz |
build: do more during windows build
- use GO_GCFLAGS and GO_LDFLAGS if supplied
- build misc\dashboard\builder and misc\goplay
- run tests in test\bench\go1
- check api compatibility
R=golang-dev, r, kardianos, bradfitz
CC=golang-dev
http://codereview.appspot.com/5847063
Diffstat (limited to 'src/make.bash')
-rwxr-xr-x | src/make.bash | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/make.bash b/src/make.bash index 080e0d6e1..b2de37b72 100755 --- a/src/make.bash +++ b/src/make.bash @@ -23,8 +23,9 @@ # GO_LDFLAGS: Additional 5l/6l/8l arguments to use when # building the commands. # -# CGO_ENABLED: Setting this to 0 disables the use of cgo -# in the built and installed packages and tools. +# CGO_ENABLED: Controls cgo usage during the build. Set it to 1 +# to include all cgo related files, .c and .go file with "cgo" +# build directive, in the build. Set it to 0 to ignore them. set -e if [ ! -f run.bash ]; then |