Blob


1 #!/bin/sh
3 test -f $PLAN9/config && . $PLAN9/config
4 usegcc()
5 {
6 cc=gcc
7 ngflags=" \
8 -O2 \
9 -c \
10 -Wall \
11 -Wno-parentheses \
12 -Wno-missing-braces \
13 -Wno-switch \
14 -Wno-comment \
15 -Wno-sign-compare \
16 -Wno-unknown-pragmas \
17 -fno-omit-frame-pointer \
18 "
19 # want to put -fno-optimize-sibling-calls here but
20 # that option only works with gcc3+ it seems
21 cflags="$ngflags -ggdb"
22 }
24 tag="${SYSNAME:-`uname`}-${OBJTYPE:-`uname -m`}-${CC9:-cc}"
25 case "$tag" in
26 *BSD*) usegcc ;;
27 *Darwin*) usegcc
28 cflags="$ngflags -g3 -no-cpp-precomp" ;;
29 *HP-UX*) cc=cc; cflags="-g -O -c -Ae" ;;
30 *Linux*) usegcc
31 case "${CC9:-gcc}" in
32 tcc)
33 cc=tcc
34 cflags="-c -g"
35 ;;
36 esac
37 case "${SYSVERSION:-`uname -r`}" in
38 2.6.*)
39 cflags="$cflags -D__Linux26__"
40 ;;
41 esac
42 ;;
43 *OSF1*) cc=cc; cflags="-g -O -c" ;;
44 *SunOS*-cc) cc=cc;
45 cflags="-mt -g -O -c -xCC -D__sun__"
46 u=`uname`
47 v=`uname -r`
48 s=`echo $u$v | tr '. ' '__'`
49 cflags="$cflags -D__${s}__"
50 ;;
51 *SunOS*-gcc) usegcc
52 u=`uname`
53 v=`uname -r`
54 s=`echo $u$v | tr '. ' '__'`
55 cflags="$ngflags -g"
56 cflags="$cflags -D__${s}__"
57 ;;
58 *)
59 echo 9c does not know how to compile on "$tag" 1>&2
60 exit 1
61 esac
63 # N.B. Must use temp file to avoid pipe; pipe loses status.
64 # The uniq at the end is for gcc's strcmp/etc. built-in nonsense,
65 # which multiplies single errors as a result of its expansion.
66 xtmp=/tmp/9c.$$.$USER.out
67 $cc -DPLAN9PORT -I$PLAN9/include $cflags "$@" 2>$xtmp
68 status=$?
69 grep -v '__p9l_autolib_' $xtmp |
70 egrep -v ': error: .Each undeclared identifier|: error: for each function it appears|: In function `|: At top level:' |
71 sed 's/ .first use in this function.$//; s/\"\([^\"][^\"]*\)\", line \([0-9][0-9]*\)/\1:\2/g' |
72 uniq 1>&2
73 rm -f $xtmp $xtmp.status
74 exit $status