Cygwin doesn't cope (yet) with gcc flags -std=c89
[p5sagit/p5-mst-13.2.git] / cflags.SH
1 case $PERL_CONFIG_SH in
2 '')
3         if test -f config.sh; then TOP=.;
4         elif test -f ../config.sh; then TOP=..;
5         elif test -f ../../config.sh; then TOP=../..;
6         elif test -f ../../../config.sh; then TOP=../../..;
7         elif test -f ../../../../config.sh; then TOP=../../../..;
8         else
9                 echo "Can't find config.sh."; exit 1
10         fi
11         . $TOP/config.sh
12         ;;
13 esac
14 : This forces SH files to create target in same directory as SH file.
15 : This is so that make depend always knows where to find SH derivatives.
16 case "$0" in
17 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
18 esac
19
20 warn=''
21
22 # Add -Wall for the core modules iff gcc and not already -Wall
23 case "$gccversion" in
24 '') ;;
25 Intel*) ;; # The Intel C++ plays gcc on TV but is not really it.
26 *)  case "$ccflags" in
27     *-Wall*) ;;
28     *) warn="$warn -Wall" ;;
29     esac
30     ;;
31 esac
32
33 # The gcc -ansi -pedantic require their own dance, too.
34 case "$gccversion" in
35 '') ;;
36 Intel*) ;; # Is that you, Intel C++?
37 *)  case "$gccansipedantic" in
38     define)
39         case "$gccversion" in
40         [12]*) ;; # gcc versions 1 (gasp!) and 2 are not good for this.
41         *)  case "$osname" in
42             # Add -ansi -pedantic only for known platforms.
43             aix|dec_osf|freebsd|hpux|irix|linux)
44                 ansipedantic="-ansi -pedantic" ;;
45             solaris)
46 # Can't add -ansi for Solaris.
47 # Off_t/off_t is a struct in Solaris with largefiles, and with -ansi
48 # that struct cannot be compared with a flat integer, such as a STRLEN.
49 # The -ansi will also cause a lot of noise in Solaris because of:
50 # /usr/include/sys/resource.h:148: warning: `struct rlimit64' declared inside parameter list
51                 ansipedantic="-pedantic" ;;
52             esac
53             for i in $ansipedantic
54             do
55                 case "$ccflags" in
56                 *$i*) ;;
57                 *) warn="$warn $i" ;;
58                 esac
59             done
60             case "$warn$ccflags" in
61             *-pedantic*) warn="$warn -DPERL_GCC_PEDANTIC" ;;
62             esac
63             ;;
64         esac
65         ;;
66     esac
67     ;;
68 esac
69
70 # Further gcc warning options.
71 case "$gccversion" in
72 '') ;;
73 [12]*) ;;
74 Intel*) ;; # Haven't we been through this already?
75 *)  for opt in '' extra declaration-after-statement endif-labels
76     do
77        case " $ccflags " in
78        *"-W$opt "*) ;;
79        *) case "`echo >_cflags.c | $cc -W$opt -c _cflags.c -o _cflags.o 2>&1`" in
80           *"unrecognized"*) ;;
81           *"Invalid"*) ;;
82           *) warn="$warn -W$opt" ;;
83           esac
84           ;;
85        esac
86        rm -f _cflags.c cflags.o
87     done
88     ;;
89 esac
90
91
92 stdflags=''
93
94 # Be strict C89 for gcc (but not for g++).
95 case "$gccversion" in
96 '') ;;
97 Intel*) ;; # Nice try, Intel C++.
98 12]*) ;; # Go easy on the older versions of gcc.
99 *) case "$cc" in
100    *g++*) ;;
101    *) case "$osname" in
102       cygwin) ;; # Fails at least up to and including 1.5.20
103       *) stdflags="$stdflags -std=c89" ;;
104       esac
105    esac
106    ;;
107 esac
108
109 echo "Extracting cflags (with variable substitutions)"
110 : This section of the file will have variable substitutions done on it.
111 : Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.
112 : Protect any dollar signs and backticks that you do not want interpreted
113 : by putting a backslash in front.  You may delete these comments.
114 rm -f cflags
115 $spitshell >cflags <<!GROK!THIS!
116 $startsh
117
118 # Extra warnings, used e.g. for gcc.
119 warn="$warn"
120 # Extra standardness.
121 stdflags="$stdflags"
122
123 !GROK!THIS!
124
125 : In the following dollars and backticks do not need the extra backslash.
126 $spitshell >>cflags <<'!NO!SUBS!'
127 case $PERL_CONFIG_SH in
128 '')
129         if test -f config.sh; then TOP=.;
130         elif test -f ../config.sh; then TOP=..;
131         elif test -f ../../config.sh; then TOP=../..;
132         elif test -f ../../../config.sh; then TOP=../../..;
133         elif test -f ../../../../config.sh; then TOP=../../../..;
134         else
135                 echo "Can't find config.sh."; exit 1
136         fi
137         . $TOP/config.sh
138         ;;
139 esac
140
141 : syntax: cflags [optimize=XXX] [file[.suffix]]
142 : displays the compiler command line for file
143
144 case "X$1" in
145 Xoptimize=*|X"optimize=*")
146         eval "$1"
147         shift
148         ;;
149 esac
150
151 also=': '
152 case $# in
153 1) also='echo 1>&2 "      CCCMD = "'
154 esac
155
156 case $# in
157 0) set *.c; echo "The current C flags are:" ;;
158 esac
159
160 set `echo "$* " | sed -e 's/\.[oc] / /g' -e 's/\.obj / /g' -e "s/\\$obj_ext / /g"`
161
162 for file do
163
164     case "$#" in
165     1) ;;
166     *) echo $n "    $file.c     $c" ;;
167     esac
168
169     : allow variables like toke_cflags to be evaluated
170
171     if echo $file | grep -v / >/dev/null
172     then
173       eval 'eval ${'"${file}_cflags"'-""}'
174     fi
175
176     : or customize here
177
178     case "$file" in
179     DB_File) ;;
180     GDBM_File) ;;
181     NDBM_File) ;;
182     ODBM_File) ;;
183     POSIX) ;;
184     SDBM_File) ;;
185     av) ;;
186     byterun) ;;
187     deb) ;;
188     dl) ;;
189     doio) ;;
190     doop) ;;
191     dump) ;;
192     globals) ;;
193     gv) ;;
194     hv) ;;
195     locale) ;;
196     madly) ;;
197     main) ;;
198     malloc) ;;
199     mg) ;;
200     miniperlmain) ;;
201     numeric) ;;
202     op) ;;
203     opmini) ;;
204     pad) ;;
205     perl) ;;
206     perlapi) ;;
207     perlmain) ;;
208     perly) ;;
209     pp) ;;
210     pp_ctl) ;;
211     pp_hot) ;;
212     pp_pack) ;;
213     pp_sort) ;;
214     pp_sys) ;;
215     regcomp) ;;
216     regexec) ;;
217     run) ;;
218     scope) ;;
219     sv) ;;
220     taint) ;;
221     toke) ;;
222     universal) ;;
223     usersub) ;;
224     utf8) ;;
225     util) ;;
226     xsutils) ;;
227     *) ;;
228     esac
229
230 if test -f .patch; then
231   ccflags="-DPERL_PATCHNUM=`cat .patch` $ccflags"
232 fi
233
234     : Can we perhaps use $ansi2knr here
235     echo "$cc -c -DPERL_CORE $ccflags $stdflags $optimize $warn"
236     eval "$also "'"$cc -DPERL_CORE -c $ccflags $stdflags $optimize $warn"'
237
238     . $TOP/config.sh
239
240 done
241 !NO!SUBS!
242 chmod 755 cflags
243 $eunicefix cflags