Make VMS use IEEE math by default; reorder Tru64 hints
[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)    _gcc_version=`$cc --version 2>&1 | tr . ' '`
73         set $_gcc_version
74         if test "$1" -lt 2 -o \( "$1" -eq 2 -a \( "$2" -lt 95 -o \( "$2" -eq 95 -a "$3" -lt 2 \) \) \); then
75             cat >&4 <<EOF
76
77 *** Your cc seems to be gcc and its version ($_gcc_version) seems to be
78 *** less than 2.95.2.  This is not a good idea since old versions of gcc
79 *** are known to produce buggy code when compiling Perl (and no doubt for
80 *** other programs, too).
81 ***
82 *** Therefore, I strongly suggest upgrading your gcc.  (Why don't you use
83 *** the vendor cc is also a good question.  It comes with the operating
84 *** system and produces good code.)
85
86 Cannot continue, aborting.
87
88 EOF
89             exit 1
90         fi
91         if test "$1" -eq 2 -a "$2" -eq 95 -a "$3" -le 2; then
92             cat >&4 <<EOF
93
94 *** Note that as of gcc 2.95.2 (19991024) and Perl 5.6.0 (March 2000)
95 *** if the said Perl is compiled with the said gcc the lib/sdbm test
96 *** may dump core (meaning that the SDBM_File extension is unusable).
97 *** As this core dump never happens with the vendor cc, this is most
98 *** probably a lingering bug in gcc.  Therefore unless you have a better
99 *** gcc installation you are still better off using the vendor cc.
100
101 Since you explicitly chose gcc, I assume that you know what are doing.
102
103 EOF
104         fi
105         ;;
106 *)      # compile something small: taint.c is fine for this.
107         ccversion=`cc -V | awk '/(Compaq|DEC) C/ {print $3}' | grep '^V'`
108         # the main point is the '-v' flag of 'cc'.
109         case "`cc -v -I. -c taint.c -o taint$$.o 2>&1`" in
110         */gemc_cc*)     # we have the new DEC GEM CC
111                         _DEC_cc_style=new
112                         ;;
113         *)              # we have the old MIPS CC
114                         _DEC_cc_style=old
115                         ;;
116         esac
117         # cleanup
118         rm -f taint$$.o
119         ;;
120 esac
121
122 # be nauseatingly ANSI
123 case "$isgcc" in
124 gcc)    ccflags="$ccflags -ansi"
125         ;;
126 *)      ccflags="$ccflags -std"
127         ;;
128 esac
129
130 # for gcc the Configure knows about the -fpic:
131 # position-independent code for dynamic loading
132
133 # we want optimisation
134
135 case "$optimize" in
136 '')     case "$isgcc" in
137         gcc)    optimize='-O3'                          ;;
138         *)      case "$_DEC_cc_style" in
139                 new)    optimize='-O4'                  ;;
140                 old)    optimize='-O2 -Olimit 3200'     ;;
141                 esac
142                 ccflags="$ccflags -D_INTRINSICS"
143                 ;;
144         esac
145         ;;
146 esac
147
148 # we want dynamic fp rounding mode, and we want ieee exception semantics
149 case "$isgcc" in
150 gcc)    case "$_DEC_cc_style" in
151         new)    ccflags="$ccflags -fprm d -ieee"        ;;
152         esac
153         ;;
154 esac
155
156 # Make glibpth agree with the compiler suite.  Note that /shlib
157 # is not here.  That's on purpose.  Even though that's where libc
158 # really lives from V4.0 on, the linker (and /sbin/loader) won't
159 # look there by default.  The sharable /sbin utilities were all
160 # built with "-Wl,-rpath,/shlib" to get around that.  This makes
161 # no attempt to figure out the additional location(s) searched by
162 # gcc, since not all versions of gcc are easily coerced into
163 # revealing that information.
164 glibpth="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc"
165 glibpth="$glibpth /usr/lib /usr/local/lib /var/shlib"
166
167 # dlopen() is in libc
168 libswanted="`echo $libswanted | sed -e 's/ dl / /'`"
169
170 # libPW contains nothing useful for perl
171 libswanted="`echo $libswanted | sed -e 's/ PW / /'`"
172
173 # libnet contains nothing useful for perl here, and doesn't work
174 libswanted="`echo $libswanted | sed -e 's/ net / /'`"
175
176 # libbsd contains nothing used by perl that is not already in libc
177 libswanted="`echo $libswanted | sed -e 's/ bsd / /'`"
178
179 # libc need not be separately listed
180 libswanted="`echo $libswanted | sed -e 's/ c / /'`"
181
182 # ndbm is already in libc
183 libswanted="`echo $libswanted | sed -e 's/ ndbm / /'`"
184
185 # the basic lddlflags used always
186 lddlflags='-shared -expect_unresolved "*"'
187
188 # Fancy compiler suites use optimising linker as well as compiler.
189 # <spider@Orb.Nashua.NH.US>
190 case "`uname -r`" in
191 *[123].*)       # old loader
192                 lddlflags="$lddlflags -O3"
193                 ;;
194 *)            if $test "X$optimize" = "X$undef"; then
195                       lddlflags="$lddlflags -msym"
196               else
197                   case "`/usr/sbin/sizer -v`" in
198                   *4.0D*)
199                       # QAR 56761: -O4 + .so may produce broken code,
200                       # fixed in 4.0E or better.
201                       ;;
202                   *)    
203                       lddlflags="$lddlflags $optimize"
204                       ;;
205                   esac
206                   # -msym: If using a sufficiently recent /sbin/loader,
207                   # keep the module symbols with the modules.
208                   lddlflags="$lddlflags -msym -std"
209               fi
210                 ;;
211 esac
212 # Yes, the above loses if gcc does not use the system linker.
213 # If that happens, let me know about it. <jhi@iki.fi>
214
215
216 # If debugging or (old systems and doing shared)
217 # then do not strip the lib, otherwise, strip.
218 # As noted above the -DDEBUGGING is added automagically by Configure if -g.
219 case "$optimize" in
220         *-g*) ;; # left intentionally blank
221 *)      case "`uname -r`" in
222         *[123].*)
223                 case "$useshrplib" in
224                 false|undef|'') lddlflags="$lddlflags -s"       ;;
225                 esac
226                 ;;
227         *) lddlflags="$lddlflags -s"
228                 ;;
229         esac
230         ;;
231 esac
232
233 #
234 # Make embedding in things like INN and Apache more memory friendly.
235 # Keep it overridable on the Configure command line, though, so that
236 # "-Uuseshrplib" prevents this default.
237 #
238
239 case "$_DEC_cc_style.$useshrplib" in
240         new.)   useshrplib="$define"    ;;
241 esac
242
243 # The EFF_ONLY_OK from <sys/access.h> is present but dysfunctional for
244 # [RWX]_OK as of Digital UNIX 4.0[A-D]?.  If and when this gets fixed,
245 # please adjust this appropriately.  See also pp_sys.c just before the
246 # emulate_eaccess().
247
248 # Fixed in V5.0A.
249 case "`/usr/sbin/sizer -v`" in
250 *5.0[A-Z]*|*5.[1-9]*|*[6-9].[0-9]*)
251         : ok
252         ;;
253 *)
254 # V5.0 or previous
255 pp_sys_cflags='ccflags="$ccflags -DNO_EFF_ONLY_OK"'
256         ;;
257 esac
258
259 # The off_t is already 8 bytes, so we do have largefileness.
260
261 cat > UU/usethreads.cbu <<'EOCBU'
262 # This script UU/usethreads.cbu will get 'called-back' by Configure 
263 # after it has prompted the user for whether to use threads.
264 case "$usethreads" in
265 $define|true|[yY]*)
266         # Threads interfaces changed with V4.0.
267         case "$isgcc" in
268         gcc)    ccflags="-D_REENTRANT $ccflags" ;;
269         *)  case "`uname -r`" in
270             *[123].*)   ccflags="-threads $ccflags" ;;
271             *)          ccflags="-pthread $ccflags" ;;
272             esac
273             ;;
274         esac    
275         case "`uname -r`" in
276         *[123].*) libswanted="$libswanted pthreads mach exc c_r" ;;
277         *)        libswanted="$libswanted pthread exc" ;;
278         esac
279
280         case "$usemymalloc" in
281         '')
282                 usemymalloc='n'
283                 ;;
284         esac
285         ;;
286 esac
287 EOCBU
288
289 cat > UU/uselongdouble.cbu <<'EOCBU'
290 # This script UU/uselongdouble.cbu will get 'called-back' by Configure 
291 # after it has prompted the user for whether to use long doubles.
292 case "$uselongdouble" in
293 $define|true|[yY]*)
294         case "`/usr/sbin/sizer -v`" in
295         *[1-4].0*)      cat >&4 <<EOF
296
297 ***
298 *** Sorry, you cannot use long doubles in pre-V5.0 releases of Tru64.
299 ***
300
301 Cannot continue, aborting.
302
303 EOF
304                 exit 1
305                 ;;
306         esac
307         d_Gconvert='sprintf((b),"%.*Lg",(n),(x))'
308         ;;
309 esac
310 EOCBU
311
312 case "`/usr/sbin/sizer -v`" in
313 *[1-4].0*) d_modfl=undef ;; # must wait till 5.0
314 esac
315
316 #
317 # Unset temporary variables no more needed.
318 #
319
320 unset _DEC_cc_style
321     
322 #
323 # History:
324 #
325 # perl5.005_51:
326 #
327 #       September-1998 Jarkko Hietaniemi <jhi@iki.fi>
328 #
329 #       * Added the -DNO_EFF_ONLY_OK flag ('use filetest;' support).
330 #
331 # perl5.004_57:
332 #
333 #       19-Dec-1997 Spider Boardman <spider@Orb.Nashua.NH.US>
334 #
335 #       * Newer Digital UNIX compilers enforce signaling for NaN without
336 #         -ieee.  Added -fprm d at the same time since it's friendlier for
337 #         embedding.
338 #
339 #       * Fixed the library search path to match cc, ld, and /sbin/loader.
340 #
341 #       * Default to building -Duseshrplib on newer systems.  -Uuseshrplib
342 #         still overrides.
343 #
344 #       * Fix -pthread additions for useshrplib.  ld has no -pthread option.
345 #
346 #
347 # perl5.004_04:
348 #
349 #       19-Sep-1997 Spider Boardman <spider@Orb.Nashua.NH.US>
350 #
351 #       * libnet on Digital UNIX is for JAVA, not for sockets.
352 #
353 #
354 # perl5.003_28:
355 #
356 #       22-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi>
357 #
358 #       * Restructuring Spider's suggestions.
359 #
360 #       * Older Digital UNIXes cannot handle -Olimit ... for $lddlflags.
361 #       
362 #       * ld -s cannot be used in older Digital UNIXes when doing shared.
363 #
364 #
365 #       21-Feb-1997 Spider Boardman <spider@Orb.Nashua.NH.US>
366 #
367 #       * -hidden removed.
368 #       
369 #       * -DSTANDARD_C removed.
370 #
371 #       * -D_INTRINSICS added. (that -fast does not seem to buy much confirmed)
372 #
373 #       * odbm not in libc, only ndbm. Therefore dbm back to $libswanted.
374 #
375 #       * -msym for the newer runtime loaders.
376 #
377 #       * $optimize also in $lddflags.
378 #
379 #
380 # perl5.003_27:
381 #
382 #       18-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi>
383 #
384 #       * unset _DEC_cc_style and more commentary on -std.
385 #
386 #
387 # perl5.003_26:
388 #
389 #       15-Feb-1997 Jarkko Hietaniemi <jhi@iki.fi>
390 #
391 #       * -std and -ansi.
392 #
393 #
394 # perl5.003_24:
395 #
396 #       30-Jan-1997 Jarkko Hietaniemi <jhi@iki.fi>
397 #
398 #       * Fixing the note on -DDEBUGGING.
399 #
400 #       * Note on -O5 -fast.
401 #
402 #
403 # perl5.003_23:
404 #
405 #       26-Jan-1997 Jarkko Hietaniemi <jhi@iki.fi>
406 #
407 #       * Notes on how to do both optimisation and debugging.
408 #
409 #
410 #       25-Jan-1997 Jarkko Hietaniemi <jhi@iki.fi>
411 #
412 #       * Remove unneeded libraries from $libswanted: PW, bsd, c, dbm
413 #
414 #       * Restructure the $lddlflags build.
415 #
416 #       * $optimize based on which compiler we have.
417 #
418 #
419 # perl5.003_22:
420 #
421 #       23-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
422 #
423 #       * Added comments 'how to create a debugging version of perl'
424 #
425 #       * Fixed logic of this script to prevent stripping of shared
426 #         objects by the loader (see ld man page for -s) is debugging
427 #         is set via the -g switch.
428 #
429 #
430 #       21-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
431 #
432 #       * now 'dl' is always removed from libswanted. Not only if
433 #         optimize is an empty string.
434 #        
435 #
436 #       17-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
437 #
438 #       * Removed 'dl' from libswanted: When the FreePort binary
439 #         translator for Sun binaries is installed Configure concludes
440 #         that it should use libdl.x.yz.fpx.so :-(
441 #         Because the dlopen, dlclose,... calls are in the
442 #         C library it not necessary at all to check for the
443 #         dl library.  Therefore dl is removed from libswanted.
444 #       
445 #
446 #       1-Jan-1997 Achim Bohnet <ach@rosat.mpe-garching.mpg.de>
447 #       
448 #       * Set -Olimit to 3200 because perl_yylex.c got too big
449 #         for the optimizer.
450 #