This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta for #117595 (-l warning)
[perl5.git] / cflags.SH
... / ...
CommitLineData
1#!/bin/sh
2
3case $PERL_CONFIG_SH in
4'')
5 if test -f config.sh; then TOP=.;
6 elif test -f ../config.sh; then TOP=..;
7 elif test -f ../../config.sh; then TOP=../..;
8 elif test -f ../../../config.sh; then TOP=../../..;
9 elif test -f ../../../../config.sh; then TOP=../../../..;
10 else
11 echo "Can't find config.sh."; exit 1
12 fi
13 . $TOP/config.sh
14 ;;
15esac
16: This forces SH files to create target in same directory as SH file.
17: This is so that make depend always knows where to find SH derivatives.
18case "$0" in
19*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
20esac
21
22if test -f config_h.SH -a ! -f config.h; then
23 . ./config_h.SH
24 CONFIG_H=already-done
25fi
26
27warn=''
28
29# Add -Wall for the core modules iff gcc and not already -Wall
30case "$gccversion" in
31'') ;;
32Intel*) ;; # The Intel C++ plays gcc on TV but is not really it.
33*) case "$ccflags" in
34 *-Wall*) ;;
35 *) warn="$warn -Wall" ;;
36 esac
37 ;;
38esac
39
40# Create a test source file for testing what options can be fed to
41# gcc in this system; include a selection of most common and commonly
42# hairy include files.
43
44cat >_cflags.c <<__EOT__
45#include "EXTERN.h"
46#include "perl.h"
47/* The stdio.h, errno.h, and setjmp.h should be there in any ANSI C89. */
48#include <stdio.h>
49#include <errno.h>
50#include <setjmp.h>
51/* Just in case the inclusion of perl.h did not
52 * pull in enough system headers, let's try again. */
53#ifdef I_STDLIB
54#include <stdlib.h>
55#endif
56#ifdef I_STDDEF
57#include <stddef.h>
58#endif
59#ifdef I_STDARG
60#include <stdarg.h>
61#endif
62#ifdef I_LIMITS
63#include <limits.h>
64#endif
65#ifdef I_DIRENT
66#include <dirent.h>
67#endif
68#ifdef I_UNISTD
69#include <unistd.h>
70#endif
71#ifdef I_SYS_TYPES
72#include <sys/types.h>
73#endif
74#ifdef I_SYS_PARAM
75#include <sys/param.h>
76#endif
77#ifdef I_SYS_RESOURCE
78#include <sys/resource.h>
79#endif
80#ifdef I_SYS_SELECT
81#include <sys/select.h>
82#endif
83#if defined(HAS_SOCKET) && !defined(VMS) && !defined(WIN32) /* See perl.h. */
84#include <sys/socket.h>
85#endif
86#ifdef I_SYS_STAT
87#include <sys/stat.h>
88#endif
89#ifdef I_SYS_TIME
90#include <sys/time.h>
91#endif
92#ifdef I_SYS_TIMES
93#include <sys/times.h>
94#endif
95#ifdef I_SYS_WAIT
96#include <sys/wait.h>
97#endif
98/* The gcc -ansi can cause a lot of noise in Solaris because of:
99 /usr/include/sys/resource.h:148: warning: 'struct rlimit64' declared inside parameter list
100 */
101int main(int argc, char *argv[]) {
102
103/* Add here test code found to be problematic in some gcc platform. */
104
105/* Off_t/off_t is a struct in Solaris with largefiles, and with gcc -ansi
106 * that struct cannot be compared in some gcc releases with a flat
107 * integer, such as a STRLEN. */
108
109 IV iv;
110 Off_t t0a = 2;
111 STRLEN t0b = 3;
112 int t0c = t0a == t0b;
113
114/* In FreeBSD 6.2 (and probably other releases too), with -Duse64bitint,
115 perl will use atoll(3). However, that declaration is hidden in <stdlib.h>
116 if we force the compiler to use -std=c89 mode.
117*/
118 iv = Atol("42");
119
120 return (!t0c && (iv == 42)) ? 0 : -1; /* Try to avoid 'unused' warnings. */
121}
122__EOT__
123
124stdflags=''
125
126# Further gcc warning options. Build up a list of options that work.
127# Note that some problems may only show up with combinations of options,
128# e.g. a warning might show up only with -Wall -ansi, not with either
129# one individually.
130# TODO: Ponder whether to migrate this back to Configure so hints files can
131# tweak it. Also, be paranoid about whether results we've deduced in Configure
132# (especially about things like long long, which are not in C89) will still be
133# valid if we now add flags like -std=c89.
134
135case "$gccversion" in
136'') ;;
137[12]*) ;; # gcc versions 1 (gasp!) and 2 are not good for this.
138Intel*) ;; # # Is that you, Intel C++?
139*) for opt in -ansi -std=c89 -W -Wextra -Wdeclaration-after-statement \
140 -Wendif-labels -Wc++-compat -Wwrite-strings
141 do
142 case " $ccflags " in
143 *" $opt "*) ;; # Skip if already there.
144 *) rm -f _cflags$_exe
145 case "`$cc -DPERL_NO_INLINE_FUNCTIONS $cflags $warn $stdflags $opt _cflags.c -o _cflags$_exe 2>&1`" in
146 *"unrecognized"*) ;;
147 *"implicit declaration"*) ;; # Was something useful hidden?
148 *"Invalid"*) ;;
149 *"is valid for C"*) ;;
150 *) if test -x _cflags$_exe
151 then
152 case "$opt" in
153 -std*) stdflags="$stdflags $opt" ;;
154 *) warn="$warn $opt" ;;
155 esac
156 fi
157 ;;
158 esac
159 ;;
160 esac
161 done
162 ;;
163esac
164rm -f _cflags.c _cflags$_exe
165
166case "$gccversion" in
167'') ;;
168*)
169 if [ "$gccansipedantic" = "" ]; then
170 # If we have -Duse64bitint (or equivalent) in effect and the quadtype
171 # has become 'long long', gcc -pedantic becomes unbearable (moreso
172 # when combined with -Wall) because long long and LL and %lld|%Ld
173 # become warn-worthy. So let's drop the -pedantic in that case.
174 case "$quadtype:$sPRId64" in
175 "long long"*|*lld*|*Ld*)
176 ccflags="`echo $ccflags|sed 's/-pedantic/ /'`"
177 warn="`echo $warn|sed 's/-pedantic/ /'`"
178 ;;
179 esac
180 # Similarly, since 'long long' isn't part of C89, FreeBSD 6.2 headers
181 # don't declare atoll() under -std=c89, but we need it. In general,
182 # insisting on -std=c89 is inconsistent with insisting on using
183 # 'long long'. So drop -std=c89 and -ansi as well if we're using
184 # 'long long' as our main integral type.
185 case "$ivtype" in
186 "long long")
187 ccflags=`echo $ccflags|sed -e 's/-pedantic/ /' -e 's/-std=c89/ /' -e 's/-ansi/ /'`
188 warn=`echo $warn|sed -e 's/-pedantic/ /' -e 's/-ansi/ /'`
189 stdflags=`echo $stdflags|sed -e 's/-std=c89/ /'`
190 ;;
191 esac
192 fi
193 # Using certain features (like the gcc statement expressions)
194 # requires knowing whether -pedantic has been specified.
195 case "$warn$ccflags" in
196 *-pedantic*) warn="$warn -DPERL_GCC_PEDANTIC" ;;
197 esac
198 ;;
199esac
200
201# Code to set any extra flags here.
202extra=''
203
204echo "Extracting cflags (with variable substitutions)"
205: This section of the file will have variable substitutions done on it.
206: Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.
207: Protect any dollar signs and backticks that you do not want interpreted
208: by putting a backslash in front. You may delete these comments.
209rm -f cflags
210$spitshell >cflags <<!GROK!THIS!
211$startsh
212
213# Extra warnings, used e.g. for gcc.
214warn="$warn"
215# Extra standardness.
216stdflags="$stdflags"
217# Extra extra.
218extra="$extra"
219# what do executables look like?
220_exe="$_exe"
221
222!GROK!THIS!
223
224: In the following dollars and backticks do not need the extra backslash.
225$spitshell >>cflags <<'!NO!SUBS!'
226case $PERL_CONFIG_SH in
227'')
228 if test -f config.sh; then TOP=.;
229 elif test -f ../config.sh; then TOP=..;
230 elif test -f ../../config.sh; then TOP=../..;
231 elif test -f ../../../config.sh; then TOP=../../..;
232 elif test -f ../../../../config.sh; then TOP=../../../..;
233 else
234 echo "Can't find config.sh."; exit 1
235 fi
236 . $TOP/config.sh
237 ;;
238esac
239
240: syntax: cflags [optimize=XXX] [file[.suffix]]
241: displays the compiler command line for file
242
243case "X$1" in
244Xoptimize=*|X"optimize=*")
245 eval "$1"
246 shift
247 ;;
248esac
249
250also=': '
251case $# in
2521) also='echo 1>&2 " CCCMD = "'
253esac
254
255case $# in
2560) set *.c; echo "The current C flags are:" ;;
257esac
258
259set `echo "$* " | sed -e 's/\.[oc] / /g' -e 's/\.obj / /g' -e "s/\\$obj_ext / /g"`
260
261for file do
262
263 case "$#" in
264 1) ;;
265 *) echo $n " $file.c $c" ;;
266 esac
267
268 : allow variables like toke_cflags to be evaluated
269
270 if echo $file | grep -v / >/dev/null
271 then
272 eval 'eval ${'"${file}_cflags"'-""}'
273 fi
274
275 : or customize here
276
277 case "$file" in
278 *) ;;
279
280 *) : Customization examples follow: ;;
281 av) ccflags=`echo $ccflags | sed -e s/-pipe//` ;;
282 deb) ccflags="$ccflags -fno-jump-tables" ;;
283 hv) warn=`echo $warn | sed -e s/-Wextra//` ;;
284 toke) optimize=-O0 ;;
285 esac
286
287 : The examples are intentionally unreachable as the '*)' case always
288 : matches. To use them, move before the '*)' and edit as appropriate.
289 : It is not a good idea to set ccflags to an absolute value here, as it
290 : often contains general -D defines which are needed for correct
291 : compilation. It is better to edit ccflags as shown, using interpolation
292 : to add flags, or sed to remove flags.
293
294
295 case "$cc" in
296 *g++*)
297 # Extra paranoia in case people have bad canned ccflags:
298 # bad in the sense that the flags are accepted by g++,
299 # but then whined about.
300 for f in -Wdeclaration-after-statement -std=c89
301 do
302 ccflags=`echo $ccflags|sed 's/$f/ /'`
303 done
304 ;;
305 esac
306 cppflags=`echo $cppflags|sed 's/-Wdeclaration-after-statement/ /'`
307
308 case "$cc" in
309 *clang)
310 # clang complains a lot about -Wunused-value which are not fixable
311 warn="$warn -Wno-unused-value"
312 ;;
313 *g++*)
314 # Without -Wno-unused-variable g++ 4.x compiles are rather unwatchable
315 # because of all the warnings about Perl___notused, and g++ doesn't do
316 # __attribute__((unused)) (and even if at some stage it may, people do
317 # have older gcc installations), and ((void)x) isn't enough to silence
318 # the noises about XS functions not using their cv parameter, so we need
319 # the -Wno-unused-parameter too.
320 # Yes, we lose some valid warnings, but hopefully other compilers
321 # (like gcc) will still pick up those warnings.
322 for o in -Wno-unused-variable -Wno-unused-parameter
323 do
324 case "$warn" in
325 *$o*) ;;
326 *) warn="$warn $o" ;;
327 esac
328 done
329 ;;
330 esac
331
332
333 : Can we perhaps use $ansi2knr here
334 echo "$cc -c -DPERL_CORE $ccflags $stdflags $optimize $warn $extra"
335 eval "$also "'"$cc -DPERL_CORE -c $ccflags $stdflags $optimize $warn $extra"'
336
337 . $TOP/config.sh
338
339 # end per file behaviour
340done
341!NO!SUBS!
342chmod 755 cflags
343$eunicefix cflags