Blob


1 #!/bin/sh
3 test -f $PLAN9/config && . $PLAN9/config
4 usegcc()
5 {
6 cc=${CC9:-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 -fsigned-char \
19 "
20 # want to put -fno-optimize-sibling-calls here but
21 # that option only works with gcc3+ it seems
22 cflags="$ngflags -ggdb"
23 }
25 quiet()
26 {
27 # The uniq at the end is for gcc's strcmp/etc. built-in nonsense,
28 # which multiplies single errors as a result of its expansion.
29 # The "Cursor. is deprecated" kills off warnings from Apple
30 # about using SetCursor/InitCursor. (Okay, they're deprecated,
31 # but you could at least tell us what to use instead, Apple!)
33 ignore=': error: .Each undeclared identifier'
34 ignore=$ignore'|: error: for each function it appears'
35 ignore=$ignore'|is dangerous, better use'
36 ignore=$ignore'|is almost always misused'
37 ignore=$ignore'|: In function '
38 ignore=$ignore'|: At top level:'
39 ignore=$ignore'|support .long long.'
40 ignore=$ignore'|In file included from'
41 ignore=$ignore'| from'
42 ignore=$ignore'|use of C99 long long'
43 ignore=$ignore'|ISO C forbids conversion'
44 ignore=$ignore'|is deprecated'
45 ignore=$ignore'|warn_unused_result'
47 grep -v '__p9l_autolib_' $1 |
48 egrep -v "$ignore" |
49 sed 's/ .first use in this function.$//; s/\"\([^\"][^\"]*\)\", line \([0-9][0-9]*\)/\1:\2/g' |
50 $(which uniq) 1>&2 # avoid built-in uniq on SunOS
51 }
53 useclang()
54 {
55 cc=${CC9:-clang}
56 ngflags=" \
57 -O2 \
58 -c \
59 -Wall \
60 -Wno-parentheses \
61 -Wno-missing-braces \
62 -Wno-switch \
63 -Wno-comment \
64 -Wno-sign-compare \
65 -Wno-unknown-pragmas \
66 -Wno-empty-body \
67 -Wno-unused-value \
68 -Wno-array-bounds \
69 -Wno-gnu-designator \
70 -Wno-array-bounds \
71 -Wno-unneeded-internal-declaration \
72 -fsigned-char \
73 -fno-caret-diagnostics \
74 "
75 cflags="$ngflags -g"
76 }
78 tag="${SYSNAME:-`uname`}-${OBJTYPE:-`uname -m`}-${CC9:-cc}"
79 case "$tag" in
80 *FreeBSD*gcc*) usegcc ;;
81 *FreeBSD*clang*) useclang ;;
82 *DragonFly*|*BSD*) usegcc ;;
83 *Darwin-x86_64*clang*)
84 useclang
85 cflags="$ngflags -g3 -m64"
86 ;;
87 *Darwin-x86_64*) usegcc
88 cflags="$ngflags -g3 -no-cpp-precomp -m64" ;;
89 *Darwin*clang*)
90 useclang
91 cflags="$ngflags -g3 -m32"
92 ;;
93 *Darwin*) usegcc
94 cflags="$ngflags -g3 -no-cpp-precomp -m32" ;;
95 *HP-UX*) cc=${CC9:-cc}; cflags="-g -O -c -Ae" ;;
96 *Linux*) usegcc
97 case "${CC9:-gcc}" in
98 tcc)
99 cc=tcc
100 cflags="-c -g"
101 ;;
102 esac
103 case "${SYSVERSION:-`uname -r`}" in
104 2.4.*)
105 cflags="$cflags -D__Linux24__"
106 ;;
107 2.6.*)
108 cflags="$cflags -D__Linux26__"
109 ;;
110 esac
111 ;;
112 *OSF1*) cc=${CC9:-cc}; cflags="-g -O -c" ;;
113 *SunOS*-cc) cc=cc;
114 cflags="-mt -g -O -c -xCC -D__sun__"
115 u=`uname`
116 v=`uname -r`
117 s=`echo $u$v | tr '. ' '__'`
118 cflags="$cflags -D__${s}__"
119 ;;
120 *SunOS*-gcc) usegcc
121 u=`uname`
122 v=`uname -r`
123 s=`echo $u$v | tr '. ' '__'`
124 cflags="$ngflags -g"
125 cflags="$cflags -D__sun__ -D__${s}__"
126 ;;
127 *AIX*) usegcc
128 cflags="$ngflags -g -D__AIX__"
129 ;;
130 *)
131 echo 9c does not know how to compile on "$tag" 1>&2
132 exit 1
133 esac
135 # N.B. Must use temp file to avoid pipe; pipe loses status.
136 xtmp=/tmp/9c.$$.$USER.out
137 $cc -DPLAN9PORT -I$PLAN9/include $cflags "$@" 2>$xtmp
138 status=$?
139 quiet $xtmp
140 rm -f $xtmp
141 exit $status