c0f2bfc2d82e2e9aeb226a9caa4cfc16223f5a45
[p5sagit/p5-mst-13.2.git] / hints / dec_osf.sh
1 # hints/dec_osf.sh
2
3 #       * If you want to debug perl or want to send a
4 #       stack trace for inclusion into an bug report, call
5 #       Configure with the additional argument  -Doptimize=-g2
6 #       or uncomment this assignment to "optimize":
7 #
8 #optimize=-g2
9 #
10 #       If you want both to optimise and debug with the DEC cc
11 #       you must have -g3, e.g. "-O4 -g3", and (re)run Configure.
12 #
13 #       * gcc can always have both -g and optimisation on.
14 #
15 #       * debugging optimised code, no matter what compiler
16 #       one is using, can be surprising and confusing because of
17 #       the optimisation tricks like code motion, code removal,
18 #       loop unrolling, and inlining. The source code and the
19 #       executable code simply do not agree any more while in
20 #       mid-execution, the optimiser only cares about the results.
21 #
22 #       * Configure will automatically add the often quoted
23 #       -DDEBUGGING for you if the -g is specified.
24 #
25 #       * There is even more optimisation available in the new
26 #       (GEM) DEC cc: -O5 and -fast. "man cc" will tell more about them.
27 #       The jury is still out whether either or neither help for Perl
28 #       and how much. Based on very quick testing, -fast boosts
29 #       raw data copy by about 5-15% (-fast brings in, among other
30 #       things, inlined, ahem, fast memcpy()), while on the other
31 #       hand searching things (index, m//, s///), seems to get slower.
32 #       Your mileage will vary.
33 #
34 #       * The -std is needed because the following compiled
35 #       without the -std and linked with -lm
36 #
37 #       #include <math.h>
38 #       #include <stdio.h>
39 #       int main(){short x=10,y=sqrt(x);printf("%d\n",y);}
40 #
41 #       will in Digital UNIX 3.* and 4.0b print 0 -- and in Digital
42 #       UNIX 4.0{,a} dump core: Floating point exception in the printf(),
43 #       the y has become a signaling NaN.
44 #
45 #       * Compilation warnings like:
46 #
47 #       "Undefined the ANSI standard macro ..."
48 #
49 #       can be ignored, at least while compiling the POSIX extension
50 #       and especially if using the sfio (the latter is not a standard
51 #       part of Perl, never mind if it says little to you).
52 #
53
54 # If using the DEC compiler we must find out the DEC compiler style:
55 # the style changed between Digital UNIX (aka DEC OSF/1) 3 and
56 # Digital UNIX 4. The old compiler was originally from Ultrix and
57 # the MIPS company, the new compiler is originally from the VAX world
58 # and it is called GEM. Many of the options we are going to use depend
59 # on the compiler style.
60
61 cc=${cc:-cc}
62
63 case "`$cc -v 2>&1 | grep cc`" in
64 *gcc*) isgcc=gcc ;;
65 esac
66
67 # do NOT, I repeat, *NOT* take away the leading tabs
68 # Configure Black Magic (TM)
69         # reset
70         _DEC_cc_style=
71 case "$isgcc" in
72 gcc)    if [ "X$gccversion" = "X" ]; then
73             # Done too late in Configure if hinted
74             gccversion=`$cc --version | sed 's/.*(GCC) *//'`
75         fi
76         set $gccversion
77         if test "$1" -lt 2 -o \( "$1" -eq 2 -a \( "$2" -lt 95 -o \( "$2" -eq 95 -a "$3" -lt 3 \) \) \); then
78             cat >&4 <<EOF
79
80 *** Your cc seems to be gcc and its version ($gccversion) seems to be
81 *** less than 2.95.3.  This is not a good idea since old versions of gcc
82 *** are known to produce buggy code when compiling Perl (and no doubt for
83 *** other programs, too).
84 ***
85 *** Therefore, I strongly suggest upgrading your gcc.  (Why don't you use
86 *** the vendor cc is also a good question.  It comes with the operating
87 *** system, produces good code, and is very ANSI C fastidious.)
88
89 Cannot continue, aborting.
90
91 EOF
92             exit 1
93         fi
94         if test "$1" -eq 2 -a "$2" -eq 95 -a "$3" -le 2; then
95             cat >&4 <<EOF
96
97 *** Note that as of gcc 2.95.2 (19991024) and Perl 5.6.0 (March 2000)
98 *** if the said Perl is compiled with the said gcc the lib/sdbm test
99 *** may dump core (meaning that the SDBM_File extension is unusable).
100 *** As this core dump never happens with the vendor cc, this is most
101 *** probably a lingering bug in gcc.  Therefore unless you have a better
102 *** gcc installation you are still better off using the vendor cc.
103
104 Since you explicitly chose gcc, I assume that you know what are doing.
105
106 EOF
107         fi
108         # -ansi is fine for gcc in Tru64 (-ansi is not universally so).
109         _ccflags_strict_ansi="-ansi"
110         ;;
111 *)      # compile something.
112         cat >try.c <<EOF
113 int main() { return 0; }
114 EOF
115         ccversion=`cc -V | awk '/(Compaq|DEC) C/ {print $3}' | grep '^V'`
116         # the main point is the '-v' flag of 'cc'.
117         case "`cc -v -c try.c 2>&1`" in
118         */gemc_cc*)     # we have the new DEC GEM CC
119                         _DEC_cc_style=new
120                         ;;
121         *)              # we have the old MIPS CC
122                         _DEC_cc_style=old
123                         ;;
124         esac
125         # We need to figure out whether -c99 is a valid flag to use.
126         # If it is, we can use it for being nauseatingly C99 ANSI --
127         # but even then the lddlflags needs to stay -std1.
128         # If it is not, we must use -std1 for both flags.
129         #
130         case "`cc -c99 try.c 2>&1`" in
131         *"-c99: Unknown flag"*)
132                 _ccflags_strict_ansi="-std1"
133                 ;;
134         *)      # However, use the -c99 only if compiling for
135                 # -DPERL_MEM_LOG, where the C99 feature __func__
136                 # is useful to have.  Otherwise use the good old
137                 # -std1 so that we stay C89 strict, which the goal
138                 # of the Perl C code base (no //, no code between
139                 # declarations, etc).  Moreover, the Tru64 cc is
140                 # not fully C99, and most probably never will be.
141                 #
142                 # The -DPERL_MEM_LOG can be either in ccflags
143                 # (if using an old config.sh) or in the command line
144                 # (which has been stowed away in UU/cmdline.opt).
145                 #
146                 case "$ccflags `cat UU/cmdline.opt`" in
147                 *-DPERL_MEM_LOG*)       _ccflags_strict_ansi="-c99"  ;;
148                 *)                      _ccflags_strict_ansi="-std1" ;;
149                 esac
150                 ;;
151         esac
152         _lddlflags_strict_ansi="-std1"
153         # -no_ansi_alias because Perl code is not that strict
154         # (also gcc uses by default -fno-strict-aliasing).
155         _ccflags_strict_ansi="$_ccflags_strict_ansi -no_ansi_alias"
156         # Cleanup.
157         rm -f try.c try.o
158         ;;
159 esac
160
161 # Be nauseatingly ANSI
162 ccflags="$ccflags $_ccflags_strict_ansi"
163
164 # g++ needs a lot of definitions to see the same set of
165 # prototypes from <unistd.h> et alia as cxx/cc see.
166 case "$cc" in
167 *g++*) ccflags="$ccflags -D_XOPEN_SOURCE -D_OSF_SOURCE -D_AES_SOURCE -D_BSD -D_POSIX_C_SOURCE=199309L -D_POSIX_PII_SOCKET" ;;
168 esac
169
170 # for gcc the Configure knows about the -fpic:
171 # position-independent code for dynamic loading
172
173 # we want optimisation
174
175 case "$optimize" in
176 '')     case "$isgcc" in
177         gcc)    optimize='-O3'                          ;;
178         *)      case "$_DEC_cc_style" in
179                 new)    optimize='-O4'                  ;;
180                 old)    optimize='-O2 -Olimit 3200'     ;;
181                 esac
182                 ccflags="$ccflags -D_INTRINSICS"
183                 ;;
184         esac
185         ;;
186 esac
187
188 case "$isgcc" in
189 gcc)    ;;
190 *)      case "$optimize" in
191         *-O*)   # With both -O and -g, the -g must be -g3.
192                 optimize="`echo $optimize | sed 's/-g[1-4]*/-g3/'`"
193                 ;;
194         esac
195         ;;
196 esac
197
198 ## Optimization limits
199 case "$isgcc" in
200 gcc) #  gcc 3.2.1 wants a lot of memory for -O3'ing toke.c
201 cat >try.c <<EOF
202 #include <stdio.h>
203 #include <sys/resource.h>
204
205 int main ()
206 {
207     struct rlimit rl;
208     int i = getrlimit (RLIMIT_DATA, &rl);
209     printf ("%d\n", rl.rlim_cur / (1024 * 1024));
210     } /* main */
211 EOF
212 $cc -o try $ccflags $ldflags try.c
213         maxdsiz=`./try`
214 rm -f try try.c core
215 if [ $maxdsiz -lt 256 ]; then
216     # less than 256 MB is probably not enough to optimize toke.c with gcc -O3
217     cat <<EOM >&4
218
219 Your process datasize is limited to $maxdsiz MB, which is (sadly) not
220 always enough to fully optimize some source code files of Perl,
221 at least 256 MB seems to be necessary as of Perl 5.8.0.  I'll try to
222 use a lower optimization level for those parts.  You could either try
223 using your shell's ulimit/limit/limits command to raise your datasize
224 (assuming the system-wide hard resource limits allow you to go higher),
225 or if you can't go higher and if you are a sysadmin, and you *do* want
226 the full optimization, you can tune the 'max_per_proc_data_size'
227 kernel parameter: see man sysconfigtab, and man sys_attrs_proc.
228
229 EOM
230 toke_cflags='optimize=-O2'
231     fi
232 ;;
233 esac
234
235 # The patch 23787
236 # http://public.activestate.com/cgi-bin/perlbrowse?patch=23787
237 # broke things for gcc (at least gcc 3.3) so that many of the pack()
238 # checksum tests for formats L, j, J, especially when combined
239 # with the < and > specifiers, started to fail if compiled with plain -O3.
240 case "$isgcc" in
241 gcc)
242 pp_pack_cflags='optimize="-O3 -fno-cse-skip-blocks"'
243 ;;
244 esac
245
246 # we want dynamic fp rounding mode, and we want ieee exception semantics
247 case "$isgcc" in
248 gcc)    ;;
249 *)      case "$_DEC_cc_style" in
250         new)    ccflags="$ccflags -fprm d -ieee"        ;;
251         esac
252         ;;
253 esac
254
255 # Make glibpth agree with the compiler suite.  Note that /shlib
256 # is not here.  That's on purpose.  Even though that's where libc
257 # really lives from V4.0 on, the linker (and /sbin/loader) won't
258 # look there by default.  The sharable /sbin utilities were all
259 # built with "-Wl,-rpath,/shlib" to get around that.  This makes
260 # no attempt to figure out the additional location(s) searched by
261 # gcc, since not all versions of gcc are easily coerced into
262 # revealing that information.
263 glibpth="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc"
264 glibpth="$glibpth /usr/lib /usr/local/lib /var/shlib"
265
266 # dlopen() is in libc
267 libswanted="`echo $libswanted | sed -e 's/ dl / /'`"
268
269 # libPW contains nothing useful for perl
270 libswanted="`echo $libswanted | sed -e 's/ PW / /'`"
271
272 # libnet contains nothing useful for perl here, and doesn't work
273 libswanted="`echo $libswanted | sed -e 's/ net / /'`"
274
275 # libbsd contains nothing used by perl that is not already in libc
276 libswanted="`echo $libswanted | sed -e 's/ bsd / /'`"
277
278 # libc need not be separately listed
279 libswanted="`echo $libswanted | sed -e 's/ c / /'`"
280
281 # ndbm is already in libc
282 libswanted="`echo $libswanted | sed -e 's/ ndbm / /'`"
283
284 # the basic lddlflags used always
285 lddlflags='-shared -expect_unresolved "*"'
286
287 # Intentional leading tab.
288         myosvers="`/usr/sbin/sizer -v 2>/dev/null || uname -r`"
289
290 # Fancy compiler suites use optimising linker as well as compiler.
291 # <spider@Orb.Nashua.NH.US>
292 case "`uname -r`" in
293 *[123].*)       # old loader
294                 lddlflags="$lddlflags -O3"
295                 ;;
296 *)            if $test "X$optimize" = "X$undef"; then
297                       lddlflags="$lddlflags -msym"
298               else
299                   case "$myosvers" in
300                   *4.0D*)
301                       # QAR 56761: -O4 + .so may produce broken code,
302                       # fixed in 4.0E or better.
303                       ;;
304                   *)    
305                       lddlflags="$lddlflags $optimize"
306                       ;;
307                   esac
308                   # -msym: If using a sufficiently recent /sbin/loader,
309                   # keep the module symbols with the modules.
310                   lddlflags="$lddlflags -msym $_lddlflags_strict_ansi"
311               fi
312                 ;;
313 esac
314 # Yes, the above loses if gcc does not use the system linker.
315 # If that happens, let me know about it. <jhi@iki.fi>
316
317 # Because there is no other handy way to recognize 3.X.
318 case "`uname -r`" in
319 *3.*)   ccflags="$ccflags -DDEC_OSF1_3_X" ;;
320 esac
321
322 # If debugging or (old systems and doing shared)
323 # then do not strip the lib, otherwise, strip.
324 # As noted above the -DDEBUGGING is added automagically by Configure if -g.
325 case "$optimize" in
326         *-g*) ;; # left intentionally blank
327 *)      case "`uname -r`" in
328         *[123].*)
329                 case "$useshrplib" in
330                 false|undef|'') lddlflags="$lddlflags -s"       ;;
331                 esac
332                 ;;
333         *) lddlflags="$lddlflags -s"
334                 ;;
335         esac
336         ;;
337 esac
338
339 #
340 # Make embedding in things like INN and Apache more memory friendly.
341 # Keep it overridable on the Configure command line, though, so that
342 # "-Uuseshrplib" prevents this default.
343 #
344
345 case "$_DEC_cc_style.$useshrplib" in
346         new.)   useshrplib="$define"    ;;
347 esac
348
349 # The EFF_ONLY_OK from <sys/access.h> is present but dysfunctional for
350 # [RWX]_OK as of Digital UNIX 4.0[A-D]?.  If and when this gets fixed,
351 # please adjust this appropriately.  See also pp_sys.c just before the
352 # emulate_eaccess().
353
354 # Fixed in V5.0A.
355 case "$myosvers" in
356 *5.0[A-Z]*|*5.[1-9]*|*[6-9].[0-9]*)
357         : ok
358         ;;
359 *)
360 # V5.0 or previous
361 pp_sys_cflags='ccflags="$ccflags -DNO_EFF_ONLY_OK"'
362         ;;
363 esac
364
365 # The off_t is already 8 bytes, so we do have largefileness.
366
367 cat > UU/usethreads.cbu <<'EOCBU'
368 # This script UU/usethreads.cbu will get 'called-back' by Configure 
369 # after it has prompted the user for whether to use threads.
370 case "$usethreads" in
371 $define|true|[yY]*)
372         # In Tru64 V5 (at least V5.1A, V5.1B) gcc (at least 3.2.2)
373         # cannot be used to compile a threaded Perl.
374         cat > pthread.c <<EOF
375 #include <pthread.h>
376 extern int foo; 
377 EOF
378         $cc -c pthread.c 2> pthread.err
379         if egrep -q "unrecognized compiler|syntax error" pthread.err; then
380             cat >&4 <<EOF
381 ***
382 *** I'm sorry but your C compiler ($cc) cannot be used to
383 *** compile Perl with threads.  The system C compiler should work.
384 ***
385
386 Cannot continue, aborting.
387
388 EOF
389             rm -f pthread.*
390             exit 1
391         fi
392         rm -f pthread.*
393         # Threads interfaces changed with V4.0.
394         case "$isgcc" in
395         gcc)
396             ccflags="-D_REENTRANT $ccflags"
397             ;;
398         *)  case "`uname -r`" in
399             *[123].*)   ccflags="-threads $ccflags" ;;
400             *)          ccflags="-pthread $ccflags" ;;
401             esac
402             ;;
403         esac    
404         case "`uname -r`" in
405         *[123].*) libswanted="$libswanted pthreads mach exc c_r" ;;
406         *)        libswanted="$libswanted pthread exc" ;;
407         esac
408
409         case "$usemymalloc" in
410         '')
411                 usemymalloc='n'
412                 ;;
413         esac
414         # These symbols are renamed in <time.h> so
415         # that the Configure hasproto doesn't see them.
416         d_asctime_r_proto="$define"
417         d_ctime_r_proto="$define"
418         d_gmtime_r_proto="$define"
419         d_localtime_r_proto="$define"
420         ;;
421 esac
422 EOCBU
423
424 # malloc wrap works
425 case "$usemallocwrap" in
426 '') usemallocwrap='define' ;;
427 esac
428
429 cat > UU/uselongdouble.cbu <<'EOCBU'
430 # This script UU/uselongdouble.cbu will get 'called-back' by Configure 
431 # after it has prompted the user for whether to use long doubles.
432 case "$uselongdouble" in
433 $define|true|[yY]*)
434         case "$myosvers" in
435         *[1-4].0*)      cat >&4 <<EOF
436
437 ***
438 *** Sorry, you cannot use long doubles in pre-V5.0 releases of Tru64.
439 ***
440
441 Cannot continue, aborting.
442
443 EOF
444                 exit 1
445                 ;;
446         *)
447                 # Test whether libc's been fixed yet for long doubles.
448                 cat >try.c <<\TRY
449 #include <stdio.h>
450 int main(int argc, char **argv)
451 {
452         unsigned long uvmax = ~0UL;
453         long double ld = uvmax + 0.0L;
454         char buf1[30], buf2[30];
455
456         (void) sprintf(buf1, "%lu", uvmax);
457         (void) sprintf(buf2, "%.0Lf", ld);
458         return strcmp(buf1, buf2) != 0;
459 }
460 TRY
461                 # Don't bother trying to work with Configure's idea of
462                 # cc and the various flags.  This might not work as-is
463                 # with gcc -- but we're testing libc, not the compiler.
464                 if cc -o try $_ccflags_strict_ansi try.c && ./try
465                 then
466                         : ok
467                 else
468                         cat <<\UGLY >&4
469 !
470 Warning!  Your libc has not yet been patched so that its "%Lf" format for
471 printing long doubles shows all the significant digits.  You will get errors
472 in the t/op/numconvert test because of this.  (The data is still good
473 internally, and the "%e" format of printf() or sprintf() in perl will still
474 produce valid results.)  See README.tru64 for additional details.
475
476 Continuing anyway.
477 !
478 UGLY
479                 fi
480                 $rm -f try try.c
481         esac
482         ;;
483 esac
484 EOCBU
485
486 case "$myosvers" in
487 *[1-4].0*) d_modfl=undef ;; # must wait till 5.0
488 esac
489
490 # Keep that leading tab.
491         old_LD_LIBRARY_PATH=$LD_LIBRARY_PATH
492 for p in $loclibpth
493 do
494         if test -d $p; then
495             echo "Appending $p to LD_LIBRARY_PATH." >& 4
496             case "$LD_LIBRARY_PATH" in
497             '') LD_LIBRARY_PATH=$p                  ;;
498             *)  LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$p ;;
499             esac
500         fi      
501 done
502 case "$LD_LIBRARY_PATH" in
503 "$old_LD_LIBRARY_PATH") ;;
504 *) echo "LD_LIBRARY_PATH is now $LD_LIBRARY_PATH." >& 4 ;;
505 esac
506 case "$LD_LIBRARY_PATH" in
507 '') ;;
508 * ) export LD_LIBRARY_PATH ;;
509 esac
510
511 #
512 # Unset temporary variables no more needed.
513 #
514
515 unset _DEC_cc_style
516     
517 #
518 # History:
519 #
520 # perl5.005_51:
521 #
522 #       September-1998 Jarkko Hietaniemi <jhi@iki.fi>
523 #
524 #       * Added the -DNO_EFF_ONLY_OK flag ('use filetest;' support).
525 #
526 # perl5.004_57:
527 #
528 #       19-Dec-1997 Spider Boardman <spider@Orb.Nashua.NH.US>
529 #
530 #       * Newer Digital UNIX compilers enforce signaling for NaN without
531 #         -ieee.  Added -fprm d at the same time since it's friendlier for
532 #         embedding.
533 #
534 #       * Fixed the library search path to match cc, ld, and /sbin/loader.
535 #
536 #       * Default to building -Duseshrplib on newer systems.  -Uuseshrplib
537 #         still overrides.
538 #
539 #       * Fix -pthread additions for useshrplib.  ld has no -pthread option.
540 #
541 #
542 # perl5.004_04:
543 #
544 #       19-Sep-1997 Spider Boardman <spider@Orb.Nashua.NH.US>
545 #
546 #       * libnet on Digital UNIX is for JAVA, not for sockets.
547 #
548 #
549 # perl5.003_28:
550 #
551 #       22-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi>
552 #
553 #       * Restructuring Spider's suggestions.
554 #
555 #       * Older Digital UNIXes cannot handle -Olimit ... for $lddlflags.
556 #       
557 #       * ld -s cannot be used in older Digital UNIXes when doing shared.
558 #
559 #
560 #       21-Feb-1997 Spider Boardman <spider@Orb.Nashua.NH.US>
561 #
562 #       * -hidden removed.
563 #       
564 #       * -DSTANDARD_C removed.
565 #
566 #       * -D_INTRINSICS added. (that -fast does not seem to buy much confirmed)
567 #
568 #       * odbm not in libc, only ndbm. Therefore dbm back to $libswanted.
569 #
570 #       * -msym for the newer runtime loaders.
571 #
572 #       * $optimize also in $lddflags.
573 #
574 #
575 # perl5.003_27:
576 #
577 #       18-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi>
578 #
579 #       * unset _DEC_cc_style and more commentary on -std.
580 #
581 #
582 # perl5.003_26:
583 #
584 #       15-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi>
585 #
586 #       * -std and -ansi.
587 #
588 #
589 # perl5.003_24:
590 #
591 #       30-Jan-1997 Jarkko Hietaniemi <jhi@iki.fi>
592 #
593 #       * Fixing the note on -DDEBUGGING.
594 #
595 #       * Note on -O5 -fast.
596 #
597 #
598 # perl5.003_23:
599 #
600 #       26-Jan-1997 Jarkko Hietaniemi <jhi@iki.fi>
601 #
602 #       * Notes on how to do both optimisation and debugging.
603 #
604 #
605 #       25-Jan-1997 Jarkko Hietaniemi <jhi@iki.fi>
606 #
607 #       * Remove unneeded libraries from $libswanted: PW, bsd, c, dbm
608 #
609 #       * Restructure the $lddlflags build.
610 #
611 #       * $optimize based on which compiler we have.
612 #
613 #
614 # perl5.003_22:
615 #
616 #       23-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
617 #
618 #       * Added comments 'how to create a debugging version of perl'
619 #
620 #       * Fixed logic of this script to prevent stripping of shared
621 #         objects by the loader (see ld man page for -s) is debugging
622 #         is set via the -g switch.
623 #
624 #
625 #       21-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
626 #
627 #       * now 'dl' is always removed from libswanted. Not only if
628 #         optimize is an empty string.
629 #        
630 #
631 #       17-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
632 #
633 #       * Removed 'dl' from libswanted: When the FreePort binary
634 #         translator for Sun binaries is installed Configure concludes
635 #         that it should use libdl.x.yz.fpx.so :-(
636 #         Because the dlopen, dlclose,... calls are in the
637 #         C library it not necessary at all to check for the
638 #         dl library.  Therefore dl is removed from libswanted.
639 #       
640 #
641 #       1-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
642 #       
643 #       * Set -Olimit to 3200 because perl_yylex.c got too big
644 #         for the optimizer.
645 #
646