This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Backport crosscompile changes (sysroot + target*)
[metaconfig.git] / U / compline / ccflags.U
1 ?RCS: $Id: ccflags.U,v 3.0.1.9 1997/02/28 15:27:07 ram Exp $
2 ?RCS:
3 ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4 ?RCS:
5 ?RCS: You may redistribute only under the terms of the Artistic License,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic License; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 3.0.
10 ?RCS:
11 ?RCS: $Log: ccflags.U,v $
12 ?RCS: Revision 3.0.1.9  1997/02/28  15:27:07  ram
13 ?RCS: patch61: removed support for NO_PROTOTYPE detection on SCO
14 ?RCS: patch61: new locincpth variable
15 ?RCS: patch61: added info on the "additional ld flags" question
16 ?RCS:
17 ?RCS: Revision 3.0.1.8  1995/07/25  13:48:54  ram
18 ?RCS: patch56: re-arranged compile line to include ldflags before objects
19 ?RCS:
20 ?RCS: Revision 3.0.1.7  1995/05/12  12:08:33  ram
21 ?RCS: patch54: now checks for cc/ccflags/ldflags coherency
22 ?RCS:
23 ?RCS: Revision 3.0.1.6  1994/10/29  16:07:02  ram
24 ?RCS: patch36: gcc versioning no longer relies on the C compiler's name
25 ?RCS: patch36: simplified check for gcc version checking (ADO)
26 ?RCS:
27 ?RCS: Revision 3.0.1.5  1994/08/29  16:06:35  ram
28 ?RCS: patch32: propagate -posix flag from ccflags to ldflags
29 ?RCS:
30 ?RCS: Revision 3.0.1.4  1994/05/06  14:28:45  ram
31 ?RCS: patch23: -fpcc-struct-return only needed in gcc 1.x (ADO)
32 ?RCS: patch23: cppflags now computed on an option-by-option basis
33 ?RCS: patch23: magically added cc flags now only done the first time
34 ?RCS:
35 ?RCS: Revision 3.0.1.3  1993/09/13  15:58:29  ram
36 ?RCS: patch10: explicitly mention -DDEBUG just in case they need it (WAD)
37 ?RCS: patch10: removed all the "tans" variable usage (WAD)
38 ?RCS:
39 ?RCS: Revision 3.0.1.2  1993/08/27  14:39:38  ram
40 ?RCS: patch7: added support for OSF/1 machines
41 ?RCS:
42 ?RCS: Revision 3.0.1.1  1993/08/25  14:00:24  ram
43 ?RCS: patch6: added defaults for cppflags, ccflags and ldflags
44 ?RCS:
45 ?RCS: Revision 3.0  1993/08/18  12:05:31  ram
46 ?RCS: Baseline for dist 3.0 netwide release.
47 ?RCS:
48 ?MAKE:ccflags ldflags lkflags cppflags optimize locincpth: test cat \
49         Myread Guess Options Oldconfig +gccversion mips_type +usrinc \
50         package contains rm +cc cppstdin cppminus cpprun cpplast libpth \
51         libs loclibpth hint usesocks sh run rm_try _sysroot
52 ?MAKE:  -pick add $@ %<
53 ?S:ccflags:
54 ?S:     This variable contains any additional C compiler flags desired by
55 ?S:     the user.  It is up to the Makefile to use this.
56 ?S:.
57 ?S:cppflags:
58 ?S:     This variable holds the flags that will be passed to the C pre-
59 ?S:     processor. It is up to the Makefile to use it.
60 ?S:.
61 ?S:optimize:
62 ?S:     This variable contains any optimizer/debugger flag that should be used.
63 ?S:     It is up to the Makefile to use it.
64 ?S:.
65 ?S:ldflags:
66 ?S:     This variable contains any additional C loader flags desired by
67 ?S:     the user.  It is up to the Makefile to use this.
68 ?S:.
69 ?S:lkflags:
70 ?S:     This variable contains any additional C partial linker flags desired by
71 ?S:     the user.  It is up to the Makefile to use this.
72 ?S:.
73 ?S:locincpth:
74 ?S:     This variable contains a list of additional directories to be
75 ?S:     searched by the compiler.  The appropriate '-I' directives will
76 ?S:     be added to ccflags.  This is intended to simplify setting
77 ?S:     local directories from the Configure command line.
78 ?S:     It's not much, but it parallels the loclibpth stuff in libpth.U.
79 ?S:.
80 ?T:inctest thisincl xxx inclwanted ftry previous thislibdir
81 ?T:EBUGGING DEBUGGING
82 ?T:check flag callback checkccflag
83 ?F:!cpp.c !gcctest !try
84 ?D:cppflags=''
85 ?D:ccflags=''
86 ?D:ldflags=''
87 ?D:optimize=''
88 ?LINT:extern _sysroot
89 ?INIT:: Possible local include directories to search.
90 ?INIT:: Set locincpth to "" in a hint file to defeat local include searches.
91 ?INIT:locincpth="/usr/local/include /opt/local/include /usr/gnu/include"
92 ?INIT:locincpth="$locincpth /opt/gnu/include /usr/GNU/include /opt/GNU/include"
93 ?INIT::
94 ?INIT:: no include file wanted by default
95 ?INIT:inclwanted=''
96 ?INIT:
97 ?INIT:: Enable -DEBUGGING and -DDEBUGGING from the command line
98 ?INIT:EBUGGING=''
99 ?INIT:DEBUGGING=''
100 ?INIT:
101 : determine optimization, if desired, or use for debug flag also
102 ?X: Allow for Configure -Uoptimize -- it's not strictly sensible, but
103 ?X: it has happened and we know what they mean.   AD  2/16/98
104 case "$optimize" in
105 ' '|$undef) dflt='none';;
106 '') dflt='-O';;
107 *) dflt="$optimize";;
108 esac
109 $cat <<EOH
110
111 By default, $package compiles with the -O flag to use the optimizer.
112 Alternately, you might want to use the symbolic debugger, which uses
113 the -g flag (on traditional Unix systems).  Either flag can be
114 specified here.  To use neither flag, specify the word "none".
115
116 EOH
117 rp="What optimizer/debugger flag should be used?"
118 . ./myread
119 optimize="$ans"
120 case "$optimize" in
121 'none') optimize=" ";;
122 esac
123
124 : Check what DEBUGGING is required from the command line
125 : -DEBUGGING      or -DDEBUGGING or
126 : -DEBUGGING=both                       = -g + -DDEBUGGING
127 : -DEBUGGING=-g   or -Doptimize=-g      = -g
128 : -DEBUGGING=none or -UDEBUGGING        =
129 : -DEBUGGING=old  or -DEBUGGING=default = ? $optimize
130 case "$EBUGGING" in
131 '')     ;;
132 *)      DEBUGGING=$EBUGGING ;;
133 esac
134
135 case "$DEBUGGING" in
136 -g|both|$define)
137     case "$optimize" in
138         *-g*) ;;
139         *)    optimize="$optimize -g" ;;
140     esac ;;
141 none|$undef)
142     case "$optimize" in
143         *-g*)   set `echo "X $optimize " | sed 's/ -g / /'`
144                 shift
145                 optimize="$*"
146                 ;;
147     esac ;;
148 esac
149
150 dflt=''
151 case "$DEBUGGING" in
152 both|$define) dflt='-DDEBUGGING'
153 esac
154
155 : argument order is deliberate, as the flag will start with - which set could
156 : think is an option
157 checkccflag='check=$1; flag=$2; callback=$3;
158 echo " ";
159 echo "Checking if your compiler accepts $flag" 2>&1;
160 echo "int main(void) { return 0; }" > gcctest.c;
161 if $cc $_sysroot -O2 $flag -o gcctest gcctest.c 2>gcctest.out && $run ./gcctest; then
162     echo "Yes, it does." 2>&1;
163     if $test -s gcctest.out ; then
164         echo "But your platform does not like it:";
165         cat gcctest.out;
166     else
167         case "$ccflags" in
168         *$check*)
169             echo "Leaving current flags $ccflags alone." 2>&1
170             ;;
171         *) dflt="$dflt $flag";
172             eval $callback
173             ;;
174         esac
175     fi
176 else
177     echo "Nope, it does not, but that is ok." 2>&1;
178 fi
179 '
180
181 : We will not override a previous value, but we might want to
182 : augment a hint file
183 case "$hint" in
184 default|recommended)
185         case "$gccversion" in
186         1*) dflt="$dflt -fpcc-struct-return" ;;
187         esac
188         case "$optimize:$DEBUGGING" in
189         *-g*:old) dflt="$dflt -DDEBUGGING";;
190         esac
191 ?X: check for POSIXized ISC
192         case "$gccversion" in
193         2*) if $test -d /etc/conf/kconfig.d &&
194                         $contains _POSIX_VERSION $usrinc/sys/unistd.h >/dev/null 2>&1
195                 then
196                         # Interactive Systems (ISC) POSIX mode.
197                         dflt="$dflt -posix"
198                 fi
199                 ;;
200         esac
201 ?X: If the user has gcc-2.95 or greater, try adding -fno-strict-alias.
202 ?X: Since the gcc "version" can be non-numeric, e.g.
203 ?X: "2.95.1 19990809 (prerelease)" , we'll do the test on any version
204 ?X: greater than 2.8.
205 ?X:     --Andy Dougherty  27 Aug 1999
206         case "$gccversion" in
207         1*) ;;
208         2.[0-8]*) ;;
209         ?*)     set strict-aliasing -fno-strict-aliasing
210                 eval $checkccflag
211                 ;;
212         esac
213 ?X: HMB 200405
214 ?X: -pipe has shown a compile time speedup of about 40% on Linux and HP-UX
215 ?X: and also worked on cygwin-1.5.9
216 ?X: If a system fails, disable it in the hints. 99% of gcc uses binutils
217         # For gcc, adding -pipe speeds up compilations for some, but apparently
218         # some assemblers can't read from stdin.  (It also slows down compilations
219         # in other cases, but those are apparently rarer these days.)  AD 5/2004.
220         case "$gccversion" in
221         ?*)     set pipe -pipe
222                 eval $checkccflag
223                 ;;
224         esac
225
226 ?X: NWC 200712
227         # on x86_64 (at least) we require an extra library (libssp) in the
228         # link command line. This library is not named, so I infer that it is
229         # an implementation detail that may change. Hence the safest approach
230         # is to add the flag to the flags passed to the compiler at link time,
231         # as that way the compiler can do the right implementation dependant
232         # thing. (NWC)
233         case "$gccversion" in
234         ?*)     set stack-protector -fstack-protector
235                 eval $checkccflag
236                 ;;
237         esac
238         ;;
239 esac
240
241 ?X: In USG mode, a MIPS system may need some BSD includes
242 case "$mips_type" in
243 *BSD*|'') inclwanted="$locincpth $usrinc";;
244 *) inclwanted="$locincpth $inclwanted $usrinc/bsd";;
245 esac
246 for thisincl in $inclwanted; do
247         if $test -d $thisincl; then
248                 if $test x$thisincl != x$usrinc; then
249                         case "$dflt" in
250                         *" -I$thisincl "*);;
251                         *) dflt="$dflt -I$thisincl ";;
252                         esac
253                 fi
254         fi
255 done
256
257 ?X: Include test function (header, symbol)
258 inctest='if $contains $2 $usrinc/$1 >/dev/null 2>&1; then
259         xxx=true;
260 elif $contains $2 $usrinc/sys/$1 >/dev/null 2>&1; then
261         xxx=true;
262 else
263         xxx=false;
264 fi;
265 if $xxx; then
266         case "$dflt" in
267         *$2*);;
268         *) dflt="$dflt -D$2";;
269         esac;
270 fi'
271
272 set signal.h LANGUAGE_C; eval $inctest
273
274 case "$usesocks" in
275 $define)
276         ccflags="$ccflags -DSOCKS"
277         ;;
278 esac
279
280 case "$hint" in
281 default|recommended) dflt="$ccflags $dflt" ;;
282 *) dflt="$ccflags";;
283 esac
284
285 case "$dflt" in
286 ''|' ') dflt=none;;
287 esac
288
289 $cat <<EOH
290
291 Your C compiler may want other flags.  For this question you should include
292 -I/whatever and -DWHATEVER flags and any other flags used by the C compiler,
293 but you should NOT include libraries or ld flags like -lwhatever.  If you
294 want $package to honor its debug switch, you should include -DDEBUGGING here.
295 Your C compiler might also need additional flags, such as -D_POSIX_SOURCE.
296
297 To use no flags, specify the word "none".
298
299 EOH
300 ?X: strip leading space
301 set X $dflt
302 shift
303 dflt=${1+"$@"}
304 rp="Any additional cc flags?"
305 . ./myread
306 case "$ans" in
307 none) ccflags='';;
308 *) ccflags="$ans";;
309 esac
310
311 : the following weeds options from ccflags that are of no interest to cpp
312 case "$cppflags" in
313 '') cppflags="$ccflags" ;;
314 *)  cppflags="$cppflags $ccflags" ;;
315 esac
316 case "$gccversion" in
317 1*) cppflags="$cppflags -D__GNUC__"
318 esac
319 case "$mips_type" in
320 '');;
321 *BSD*) cppflags="$cppflags -DSYSTYPE_BSD43";;
322 esac
323 case "$cppflags" in
324 '');;
325 *)
326         echo " "
327         echo "Let me guess what the preprocessor flags are..." >&4
328         set X $cppflags
329         shift
330         cppflags=''
331         $cat >cpp.c <<'EOM'
332 #define BLURFL foo
333
334 BLURFL xx LFRULB
335 EOM
336 ?X:
337 ?X: For each cc flag, try it out with both cppstdin and cpprun, since the
338 ?X: first is almost surely a cc wrapper. We have to try both in case
339 ?X: of cc flags like '-Olimit 2900' that are actually two words...
340 ?X:
341         previous=''
342         for flag in $*
343         do
344                 case "$flag" in
345                 -*) ftry="$flag";;
346                 *) ftry="$previous $flag";;
347                 esac
348                 if $cppstdin -DLFRULB=bar $cppflags $ftry $cppminus <cpp.c \
349                         >cpp1.out 2>/dev/null && \
350                         $cpprun -DLFRULB=bar $cppflags $ftry $cpplast <cpp.c \
351                         >cpp2.out 2>/dev/null && \
352                         $contains 'foo.*xx.*bar' cpp1.out >/dev/null 2>&1 && \
353                         $contains 'foo.*xx.*bar' cpp2.out >/dev/null 2>&1
354                 then
355                         cppflags="$cppflags $ftry"
356                         previous=''
357                 else
358                         previous="$flag"
359                 fi
360         done
361         set X $cppflags
362         shift
363         cppflags=${1+"$@"}
364         case "$cppflags" in
365         *-*)  echo "They appear to be: $cppflags";;
366         esac
367         $rm -f cpp.c cpp?.out
368         ;;
369 esac
370
371 : flags used in final linking phase
372 case "$ldflags" in
373 '') if ./venix; then
374                 dflt='-i -z'
375         else
376                 dflt=''
377         fi
378         case "$ccflags" in
379         *-posix*) dflt="$dflt -posix" ;;
380         esac
381         ;;
382 *) dflt="$ldflags";;
383 esac
384 # See note above about -fstack-protector
385 case "$ccflags" in
386 *-fstack-protector*)
387         case "$dflt" in
388         *-fstack-protector*) ;; # Don't add it again
389         *) dflt="$dflt -fstack-protector" ;;
390         esac
391         ;;
392 esac
393
394 : Try to guess additional flags to pick up local libraries.
395 for thislibdir in $libpth; do
396         case " $loclibpth " in
397         *" $thislibdir "*)
398                 case "$dflt " in
399                 *"-L$thislibdir "*) ;;
400                 *)  dflt="$dflt -L$thislibdir" ;;
401                 esac
402                 ;;
403         esac
404 done
405
406 case "$dflt" in
407 '') dflt='none' ;;
408 esac
409
410 $cat <<EOH
411
412 Your C linker may need flags.  For this question you should
413 include -L/whatever and any other flags used by the C linker, but you
414 should NOT include libraries like -lwhatever.
415
416 Make sure you include the appropriate -L/path flags if your C linker
417 does not normally search all of the directories you specified above,
418 namely
419         $libpth
420 To use no flags, specify the word "none".
421
422 EOH
423
424 rp="Any additional ld flags (NOT including libraries)?"
425 . ./myread
426 case "$ans" in
427 none) ldflags='';;
428 *) ldflags="$ans";;
429 esac
430 rmlist="$rmlist pdp11"
431
432 @if lkflags
433 : partial linking may need other flags
434 case "$lkflags" in
435 '') case "$ldflags" in
436         '') dflt='none';;
437         *) dflt="$ldflags";;
438         esac;;
439 *) dflt="$lkflags";;
440 esac
441 echo " "
442 rp="Partial linking flags to be used (NOT including -r)?"
443 . ./myread
444 case "$ans" in
445 none) lkflags='';;
446 *) lkflags="$ans";;
447 esac
448
449 @end
450 ?X:
451 ?X: If the user changes compilers after selecting a hint file, it's
452 ?X: possible that the suggested ccflags/ldflags will be wrong.  Try to
453 ?X: compile and run a simple test program.  Let the user see all the
454 ?X: error messages. -- ADO and RAM
455 ?X: Sometimes, particularly on Linux systems, there is a bad library
456 ?X: (e.g. a dangling symlink or incompatible library or a "run-time"
457 ?X: version but not a "development" version of a library).  This test
458 ?X: will catch those sorts of problems too, though how to fix them
459 ?X: may not be obvious.
460 ?X:
461 : coherency check
462 echo " "
463 echo "Checking your choice of C compiler and flags for coherency..." >&4
464 $cat > try.c <<'EOF'
465 #include <stdio.h>
466 int main() { printf("Ok\n"); return(0); }
467 EOF
468 ?X: Strip extra blanks in case some of the following variables are empty
469 set X $cc -o try $optimize $ccflags $ldflags try.c $libs
470 shift
471 $cat >try.msg <<'EOM'
472 I've tried to compile and run the following simple program:
473
474 EOM
475 $cat try.c >> try.msg
476
477 $cat >> try.msg <<EOM
478
479 I used the command:
480
481         $*
482         $run ./try
483
484 and I got the following output:
485
486 EOM
487 dflt=y
488 ?X: Use "sh -c" to avoid error messages tagged with leading "Configure:".
489 ?X: We need to try the resulting executable, because cc might yield a 0 status
490 ?X: even when ld failed, in which case the executable will not run properly,
491 ?X: if its x bit is set at all...
492 if $sh -c "$cc -o try $optimize $ccflags $ldflags try.c $libs" >>try.msg 2>&1; then
493         if $sh -c "$run ./try " >>try.msg 2>&1; then
494                 xxx=`$run ./try`
495                 case "$xxx" in
496                 "Ok") dflt=n ;;
497                 *)    echo 'The program compiled OK, but produced no output.' >> try.msg ;;
498                 esac
499         else
500                 echo "The program compiled OK, but exited with status $?." >>try.msg
501                 rp="You have a problem.  Shall I abort Configure"
502                 dflt=y
503         fi
504 else
505         echo "I can't compile the test program." >>try.msg
506         rp="You have a BIG problem.  Shall I abort Configure"
507         dflt=y
508 fi
509 case "$dflt" in
510 y)
511         $cat try.msg >&4
512 ?X: using -K will prevent default aborting--maybe they're cross compiling?
513         case "$knowitall" in
514         '')
515                 echo "(The supplied flags or libraries might be incorrect.)"
516                 ;;
517         *) dflt=n;;
518         esac
519         echo " "
520         . ./myread
521         case "$ans" in
522         n*|N*) ;;
523         *)      echo "Ok.  Stopping Configure." >&4
524                 exit 1
525                 ;;
526         esac
527         ;;
528 n) echo "OK, that should do.";;
529 esac
530 $rm_try gcctest gcctest.out
531