diff options
author | Russ Cox <rsc@golang.org> | 2008-11-19 12:54:44 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2008-11-19 12:54:44 -0800 |
commit | 6c426e18a0159404a54ff323efc2f2e445ef11f3 (patch) | |
tree | 1b9f8991e11553eb96bf650a9a375b6dd1148171 /src/make.bash | |
parent | 7aa5a491ce56bf0fdc9c6fbf7c4d066d2055c25c (diff) | |
download | golang-6c426e18a0159404a54ff323efc2f2e445ef11f3.tar.gz |
build with warnings enabled.
new script "quietgcc" installed in $HOME/bin during make.bash
runs gcc with warnings, turns off inappropriate ones,
greps out useless output.
quietgcc also makes sure to run the correct 64-bit gcc.
R=r
DELTA=38 (36 added, 0 deleted, 2 changed)
OCL=17493
CL=19599
Diffstat (limited to 'src/make.bash')
-rwxr-xr-x | src/make.bash | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/make.bash b/src/make.bash index 8d284d88e..0c9475f4d 100755 --- a/src/make.bash +++ b/src/make.bash @@ -14,6 +14,9 @@ fi bash clean.bash +cp quietgcc.bash $HOME/bin/quietgcc +chmod +x $HOME/bin/quietgcc + for i in lib9 libbio libmach_amd64 libregexp cmd runtime lib do echo; echo; echo %%%% making $i %%%%; echo |