1 case $PERL_CONFIG_SH in
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=../../../..;
9 echo "Can't find config.sh."; exit 1
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.
17 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
20 if test -f config_h.SH -a ! -f config.h; then
27 # Add -Wall for the core modules iff gcc and not already -Wall
30 Intel*) ;; # The Intel C++ plays gcc on TV but is not really it.
33 *) warn="$warn -Wall" ;;
38 # Create a test source file for testing what options can be fed to
39 # gcc in this system; include a selection of most common and commonly
40 # hairy include files.
42 cat >_cflags.c <<__EOT__
45 /* The stdio.h, errno.h, and setjmp.h should be there in any ANSI C89. */
49 /* Just in case the inclusion of perl.h did not
50 * pull in enough system headers, let's try again. */
70 #include <sys/types.h>
73 #include <sys/param.h>
76 #include <sys/resource.h>
79 #include <sys/select.h>
81 #if defined(HAS_SOCKET) && !defined(VMS) && !defined(WIN32) /* See perl.h. */
82 #include <sys/socket.h>
91 #include <sys/times.h>
96 /* The gcc -ansi can cause a lot of noise in Solaris because of:
97 /usr/include/sys/resource.h:148: warning: 'struct rlimit64' declared inside parameter list
99 int main(int argc, char *argv[]) {
101 /* Add here test code found to be problematic in some gcc platform. */
103 /* Off_t/off_t is a struct in Solaris with largefiles, and with gcc -ansi
104 * that struct cannot be compared in some gcc releases with a flat
105 * integer, such as a STRLEN. */
110 int t0c = t0a == t0b;
112 /* In FreeBSD 6.2 (and probably other releases too), with -Duse64bitint,
113 perl will use atoll(3). However, that declaration is hidden in <stdlib.h>
114 if we force the compiler to use -std=c89 mode.
118 return (!t0c && (iv == 42)) ? 0 : -1; /* Try to avoid 'unused' warnings. */
124 # Further gcc warning options. Build up a list of options that work.
125 # Note that some problems may only show up with combinations of options,
126 # e.g. a warning might show up only with -Wall -ansi, not with either
128 # TODO: Ponder whether to migrate this back to Configure so hints files can
129 # tweak it. Also, be paranoid about whether results we've deduced in Configure
130 # (especially about things like long long, which are not in C89) will still be
131 # valid if we now add flags like -std=c89.
133 case "$gccversion" in
135 [12]*) ;; # gcc versions 1 (gasp!) and 2 are not good for this.
136 Intel*) ;; # # Is that you, Intel C++?
137 *) for opt in -ansi -std=c89 -W -Wextra -Wdeclaration-after-statement -Wendif-labels -Wc++-compat
140 *" $opt "*) ;; # Skip if already there.
141 *) rm -f _cflags$_exe
142 case "`$cc $cflags $warn $stdflags $opt _cflags.c -o _cflags$_exe 2>&1`" in
144 *"implicit declaration"*) ;; # Was something useful hidden?
146 *"is valid for C"*) ;;
147 *) if test -x _cflags$_exe
150 -std*) stdflags="$stdflags $opt" ;;
151 *) warn="$warn $opt" ;;
161 rm -f _cflags.c _cflags$_exe
163 case "$gccversion" in
166 if [ "$gccansipedantic" = "" ]; then
167 # If we have -Duse64bitint (or equivalent) in effect and the quadtype
168 # has become 'long long', gcc -pedantic becomes unbearable (moreso
169 # when combined with -Wall) because long long and LL and %lld|%Ld
170 # become warn-worthy. So let's drop the -pedantic in that case.
171 case "$quadtype:$sPRId64" in
172 "long long"*|*lld*|*Ld*)
173 ccflags="`echo $ccflags|sed 's/-pedantic/ /'`"
174 warn="`echo $warn|sed 's/-pedantic/ /'`"
177 # Similarly, since 'long long' isn't part of C89, FreeBSD 6.2 headers
178 # don't declare atoll() under -std=c89, but we need it. In general,
179 # insisting on -std=c89 is inconsistent with insisting on using
180 # 'long long'. So drop -std=c89 and -ansi as well if we're using
181 # 'long long' as our main integral type.
184 ccflags=`echo $ccflags|sed -e 's/-pedantic/ /' -e 's/-std=c89/ /' -e 's/-ansi/ /'`
185 warn=`echo $warn|sed -e 's/-pedantic/ /' -e 's/-ansi/ /'`
186 stdflags=`echo $stdflags|sed -e 's/-std=c89/ /'`
190 # Using certain features (like the gcc statement expressions)
191 # requires knowing whether -pedantic has been specified.
192 case "$warn$ccflags" in
193 *-pedantic*) warn="$warn -DPERL_GCC_PEDANTIC" ;;
198 # Code to set any extra flags here.
201 echo "Extracting cflags (with variable substitutions)"
202 : This section of the file will have variable substitutions done on it.
203 : Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.
204 : Protect any dollar signs and backticks that you do not want interpreted
205 : by putting a backslash in front. You may delete these comments.
207 $spitshell >cflags <<!GROK!THIS!
210 # Extra warnings, used e.g. for gcc.
212 # Extra standardness.
216 # what do executables look like?
221 : In the following dollars and backticks do not need the extra backslash.
222 $spitshell >>cflags <<'!NO!SUBS!'
223 case $PERL_CONFIG_SH in
225 if test -f config.sh; then TOP=.;
226 elif test -f ../config.sh; then TOP=..;
227 elif test -f ../../config.sh; then TOP=../..;
228 elif test -f ../../../config.sh; then TOP=../../..;
229 elif test -f ../../../../config.sh; then TOP=../../../..;
231 echo "Can't find config.sh."; exit 1
237 : syntax: cflags [optimize=XXX] [file[.suffix]]
238 : displays the compiler command line for file
241 Xoptimize=*|X"optimize=*")
249 1) also='echo 1>&2 " CCCMD = "'
253 0) set *.c; echo "The current C flags are:" ;;
256 set `echo "$* " | sed -e 's/\.[oc] / /g' -e 's/\.obj / /g' -e "s/\\$obj_ext / /g"`
262 *) echo $n " $file.c $c" ;;
265 : allow variables like toke_cflags to be evaluated
267 if echo $file | grep -v / >/dev/null
269 eval 'eval ${'"${file}_cflags"'-""}'
327 # Extra paranoia in case people have bad canned ccflags:
328 # bad in the sense that the flags are accepted by g++,
329 # but then whined about.
330 for f in -Wdeclaration-after-statement -std=c89
332 ccflags=`echo $ccflags|sed 's/$f/ /'`
336 cppflags=`echo $cppflags|sed 's/-Wdeclaration-after-statement/ /'`
340 # Without -Wno-unused-variable g++ 4.x compiles are rather unwatchable
341 # because of all the warnings about Perl___notused, and g++ doesn't do
342 # __attribute__((unused)) (and even if at some stage it may, people do
343 # have older gcc installations), and ((void)x) isn't enough to silence
344 # the noises about XS functions not using their cv parameter, so we need
345 # the -Wno-unused-parameter too.
346 # Yes, we lose some valid warnings, but hopefully other compilers
347 # (like gcc) will still pick up those warnings.
348 for o in -Wno-unused-variable -Wno-unused-parameter
352 *) warn="$warn $o" ;;
359 : Can we perhaps use $ansi2knr here
360 echo "$cc -c -DPERL_CORE $ccflags $stdflags $optimize $warn $extra"
361 eval "$also "'"$cc -DPERL_CORE -c $ccflags $stdflags $optimize $warn $extra"'
365 # end per file behaviour