2009-11-14 16:29:09 -07:00
|
|
|
#!/usr/bin/env bash
|
2008-11-19 13:54:44 -07:00
|
|
|
# Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
2009-07-29 12:47:11 -06:00
|
|
|
|
2008-11-19 13:54:44 -07:00
|
|
|
# The master for this file is $GOROOT/src/quietgcc.bash
|
|
|
|
# Changes made to $HOME/bin/quietgcc will be overridden.
|
|
|
|
|
|
|
|
# Gcc output that we don't care to see.
|
|
|
|
ignore=': error: .Each undeclared identifier'
|
|
|
|
ignore=$ignore'|: error: for each function it appears'
|
|
|
|
ignore=$ignore'|is dangerous, better use'
|
|
|
|
ignore=$ignore'|is almost always misused'
|
|
|
|
ignore=$ignore'|: In function '
|
|
|
|
ignore=$ignore'|: At top level: '
|
|
|
|
ignore=$ignore'|In file included from'
|
|
|
|
ignore=$ignore'| from'
|
|
|
|
|
2009-11-01 17:13:37 -07:00
|
|
|
# Figure out which cc to run; this is set by make.bash.
|
2009-11-01 17:29:33 -07:00
|
|
|
gcc="@CC@"
|
2009-11-01 17:13:37 -07:00
|
|
|
if test "$gcc" = "@C""C@"; then
|
|
|
|
gcc=gcc
|
|
|
|
fi
|
2008-11-19 13:54:44 -07:00
|
|
|
|
2009-07-29 12:47:11 -06:00
|
|
|
# If this is a 64-bit machine, compile 64-bit versions of
|
|
|
|
# the host tools, to match the native ptrace.
|
|
|
|
case "`uname -m -p`" in
|
|
|
|
*x86_64* | *amd64*)
|
|
|
|
gcc="$gcc -m64"
|
|
|
|
esac
|
|
|
|
|
|
|
|
|
2008-11-19 13:54:44 -07:00
|
|
|
# Run gcc, save error status, redisplay output without noise, exit with gcc status.
|
|
|
|
tmp=/tmp/qcc.$$.$USER.out
|
2009-07-29 12:47:11 -06:00
|
|
|
$gcc -Wall -Wno-sign-compare -Wno-missing-braces \
|
2008-11-19 13:54:44 -07:00
|
|
|
-Wno-parentheses -Wno-unknown-pragmas -Wno-switch -Wno-comment \
|
|
|
|
"$@" >$tmp 2>&1
|
|
|
|
status=$?
|
2009-09-09 17:45:23 -06:00
|
|
|
egrep -v "$ignore" $tmp | uniq | tee $tmp.1
|
|
|
|
|
|
|
|
# Make incompatible pointer type "warnings" stop the build.
|
|
|
|
# Not quite perfect--we should remove the object file--but
|
|
|
|
# a step in the right direction.
|
|
|
|
if egrep 'incompatible pointer type' $tmp.1 >/dev/null; then
|
|
|
|
status=1
|
|
|
|
fi
|
|
|
|
rm -f $tmp $tmp.1
|
2008-11-19 13:54:44 -07:00
|
|
|
exit $status
|