This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add a mention of the error "DESTROY created new reference
[perl5.git] / hints / solaris_2.sh
1 # hints/solaris_2.sh
2 # Contributions by (in alphabetical order) Alan Burlison, Andy Dougherty,
3 # Dean Roehrich, Jarkko Hietaniemi, Lupe Christoph, Richard Soderberg and
4 # many others.
5 #
6 # See README.solaris for additional information.
7 #
8 # For consistency with gcc, we do not adopt Sun Marketing's
9 # removal of the '2.' prefix from the Solaris version number.
10 # (Configure tries to detect an old fixincludes and needs
11 # this information.)
12
13 # If perl fails tests that involve dynamic loading of extensions, and
14 # you are using gcc, be sure that you are NOT using GNU as and ld.  One
15 # way to do that is to invoke Configure with
16 #
17 #     sh Configure -Dcc='gcc -B/usr/ccs/bin/'
18 #
19 #  (Note that the trailing slash is *required*.)
20 #  gcc will occasionally emit warnings about "unused prefix", but
21 #  these ought to be harmless.  See below for more details.
22
23 # Solaris has secure SUID scripts
24 d_suidsafe=${d_suidsafe:-define}
25
26 # Be paranoid about nm failing to find symbols
27 mistrustnm=${mistrustnm:-run}
28
29 # Several people reported problems with perl's malloc, especially
30 # when use64bitall is defined or when using gcc.
31 #     http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-01/msg01318.html
32 #     http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-01/msg00465.html
33 usemymalloc=${usemymalloc:-false}
34
35 # Avoid all libraries in /usr/ucblib.
36 # /lib is just a symlink to /usr/lib
37 set `echo $glibpth | sed -e 's@/usr/ucblib@@' -e 's@ /lib @ @'`
38 glibpth="$*"
39
40 # Remove unwanted libraries.  -lucb contains incompatible routines.
41 # -lld and -lsec don't do anything useful. -lcrypt does not
42 # really provide anything we need over -lc, so we drop it, too.
43 # -lmalloc can cause a problem with GNU CC & Solaris.  Specifically,
44 # libmalloc.a may allocate memory that is only 4 byte aligned, but
45 # GNU CC on the Sparc assumes that doubles are 8 byte aligned.
46 # Thanks to  Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>
47 set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @' -e 's@ sec @ @' -e 's@ crypt @ @'`
48 libswanted="$*"
49
50 # Look for architecture name.  We want to suggest a useful default.
51 case "$archname" in
52 '')
53     if test -f /usr/bin/arch; then
54         archname=`/usr/bin/arch`
55         archname="${archname}-${osname}"
56     elif test -f /usr/ucb/arch; then
57         archname=`/usr/ucb/arch`
58         archname="${archname}-${osname}"
59     fi
60     ;;
61 esac
62
63 #
64 # This extracts the library directories that will be searched by the Sun
65 # Workshop compiler, given the command-line supplied in $tryworkshopcc.
66 # Use thusly: loclibpth="`$getworkshoplibs` $loclibpth"
67 #
68         getworkshoplibs=`cat <<'END'
69 eval $tryworkshopcc -### 2>&1 | \
70 sed -n '/ -Y /s!.* -Y "P,\([^"]*\)".*!\1!p' | tr ':' ' ' | \
71 sed -e 's!/usr/lib/sparcv9!!' -e 's!/usr/ccs/lib/sparcv9!!' \
72     -e 's!/usr/lib!!g' -e 's!/usr/ccs/lib!!g'
73 END
74 `
75
76 case "$cc" in
77 '')     if test -f /opt/SUNWspro/bin/cc; then
78                 cc=/opt/SUNWspro/bin/cc
79                 cat <<EOF >&4   
80
81 You specified no cc but you seem to have the Workshop compiler
82 ($cc) installed, using that.
83 If you want something else, specify that in the command line,
84 e.g. Configure -Dcc=gcc
85
86 EOF
87         fi
88         ;;
89 esac
90
91 ######################################################
92 # General sanity testing.  See below for excerpts from the Solaris FAQ.
93 #
94 # From roehrich@ironwood-fddi.cray.com Wed Sep 27 12:51:46 1995
95 # Date: Thu, 7 Sep 1995 16:31:40 -0500
96 # From: Dean Roehrich <roehrich@ironwood-fddi.cray.com>
97 # To: perl5-porters@africa.nicoh.com
98 # Subject: Re: On perl5/solaris/gcc
99 #
100 # Here's another draft of the perl5/solaris/gcc sanity-checker.
101
102 case `type ${cc:-cc}` in
103 */usr/ucb/cc*) cat <<END >&4
104
105 NOTE:  Some people have reported problems with /usr/ucb/cc.
106 If you have difficulties, please make sure the directory
107 containing your C compiler is before /usr/ucb in your PATH.
108
109 END
110 ;;
111 esac
112
113
114 # Check that /dev/fd is mounted.  If it is not mounted, let the
115 # user know that suid scripts may not work.
116 mount | grep '^/dev/fd ' 2>&1 > /dev/null
117 case $? in
118 0) ;;
119 *)
120         cat <<END >&4
121
122 NOTE: Your system does not have /dev/fd mounted.  If you want to
123 be able to use set-uid scripts you must ask your system administrator
124 to mount /dev/fd.
125
126 END
127         ;;
128 esac
129
130
131 # See if libucb can be found in /usr/lib.  If it is, warn the user
132 # that this may cause problems while building Perl extensions.
133 /usr/bin/ls /usr/lib/libucb* >/dev/null 2>&1
134 case $? in
135 0)
136         cat <<END >&4
137
138 NOTE: libucb has been found in /usr/lib.  libucb should reside in
139 /usr/ucblib.  You may have trouble while building Perl extensions.
140
141 END
142 ;;
143 esac
144
145 # Use shell built-in 'type' command instead of /usr/bin/which to
146 # avoid possible csh start-up problems and also to use the same shell
147 # we'll be using to Configure and make perl.
148 # The path name is the last field in the output, but the type command
149 # has an annoying array of possible outputs, e.g.:
150 #       make is hashed (/opt/gnu/bin/make)
151 #       cc is /usr/ucb/cc
152 #       foo not found
153 # use a command like type make | awk '{print $NF}' | sed 's/[()]//g'
154
155 # See if make(1) is GNU make(1).
156 # If it is, make sure the setgid bit is not set.
157 make -v > make.vers 2>&1
158 if grep GNU make.vers > /dev/null 2>&1; then
159     tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'`
160     case "`/usr/bin/ls -lL $tmp`" in
161     ??????s*)
162             cat <<END >&2
163
164 NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id
165 bit set.  You must either rearrange your PATH to put /usr/ccs/bin before the
166 GNU utilities or you must ask your system administrator to disable the
167 set-group-id bit on GNU make.
168
169 END
170             ;;
171     esac
172 fi
173 rm -f make.vers
174
175 cat > UU/cc.cbu <<'EOCBU'
176 # This script UU/cc.cbu will get 'called-back' by Configure after it
177 # has prompted the user for the C compiler to use.
178
179 # If the C compiler is gcc:
180 #   - check the fixed-includes
181 #   - check as(1) and ld(1), they should not be GNU
182 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
183 # If the C compiler is not gcc:
184 #   - Check if it is the Workshop/Forte compiler.
185 #     If it is, prepare for 64 bit and long doubles.
186 #   - check as(1) and ld(1), they should not be GNU
187 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
188 #
189 # Watch out in case they have not set $cc.
190
191 # Perl compiled with some combinations of GNU as and ld may not
192 # be able to perform dynamic loading of extensions.  If you have a
193 # problem with dynamic loading, be sure that you are using the Solaris
194 # /usr/ccs/bin/as and /usr/ccs/bin/ld.  You can do that with
195 #               sh Configure -Dcc='gcc -B/usr/ccs/bin/'
196 # (note the trailing slash is required).
197 # Combinations that are known to work with the following hints:
198 #
199 #  gcc-2.7.2, GNU as 2.7, GNU ld 2.7
200 #  egcs-1.0.3, GNU as 2.9.1 and GNU ld 2.9.1
201 #       --Andy Dougherty  <doughera@lafayette.edu>
202 #       Tue Apr 13 17:19:43 EDT 1999
203
204 # Get gcc to share its secrets.
205 echo 'int main() { return 0; }' > try.c
206         # Indent to avoid propagation to config.sh
207         verbose=`${cc:-cc} -v -o try try.c 2>&1`
208
209 if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
210         #
211         # Using gcc.
212         #
213         cc_name='gcc'
214
215         # See if as(1) is GNU as(1).  GNU as(1) might not work for this job.
216         if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then
217             :
218         else
219             cat <<END >&2
220
221 NOTE: You are using GNU as(1).  GNU as(1) might not build Perl.  If you
222 have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/
223 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
224
225 END
226             # Apparently not needed, at least for as 2.7 and later.
227             # cc="${cc:-cc} -B/usr/ccs/bin/"
228         fi
229
230         # See if ld(1) is GNU ld(1).  GNU ld(1) might not work for this job.
231         # Recompute $verbose since we may have just changed $cc.
232         verbose=`${cc:-cc} -v -o try try.c 2>&1 | grep ld 2>&1`
233
234         if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then
235             # Ok, gcc directly calls the Solaris /usr/ccs/bin/ld.
236             :
237         elif echo "$verbose" | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
238             # Hmm.  gcc doesn't call /usr/ccs/bin/ld directly, but it
239             # does appear to be using it eventually.  egcs-1.0.3's ld
240             # wrapper does this.
241             # All Solaris versions of ld I've seen contain the magic
242             # string used in the grep.
243             :
244         else
245             # No evidence yet of /usr/ccs/bin/ld.  Some versions
246             # of egcs's ld wrapper call /usr/ccs/bin/ld in turn but
247             # apparently don't reveal that unless you pass in -V.
248             # (This may all depend on local configurations too.)
249
250             # Recompute verbose with -Wl,-v to find GNU ld if present
251             verbose=`${cc:-cc} -v -Wl,-v -o try try.c 2>&1 | grep ld 2>&1`
252
253             myld=`echo $verbose| grep ld | awk '/\/ld/ {print $1}'`
254             # This assumes that gcc's output will not change, and that
255             # /full/path/to/ld will be the first word of the output.
256             # Thus myld is something like /opt/gnu/sparc-sun-solaris2.5/bin/ld
257
258             # Allow that $myld may be '', due to changes in gcc's output 
259             if ${myld:-ld} -V 2>&1 |
260                 grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
261                 # Ok, /usr/ccs/bin/ld eventually does get called.
262                 :
263             else
264                 echo "Found GNU ld='$myld'" >&4
265                 cat <<END >&2
266
267 NOTE: You are using GNU ld(1).  GNU ld(1) might not build Perl.  If you
268 have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/
269 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
270
271 I will try to use GNU ld by passing in the -Wl,-E flag, but if that
272 doesn't work, you should use -B/usr/ccs/bin/ instead.
273
274 END
275                 ccdlflags="$ccdlflags -Wl,-E"
276                 lddlflags="$lddlflags -Wl,-E -G"
277             fi
278         fi
279
280 else
281         #
282         # Not using gcc.
283         #
284         cat > try.c << 'EOM'
285 #include <stdio.h>
286 int main() {
287 #ifdef __SUNPRO_C
288         printf("workshop\n");
289 #else
290         printf("\n");
291 #endif
292 return(0);
293 }
294 EOM
295         tryworkshopcc="${cc:-cc} try.c -o try"
296         if $tryworkshopcc >/dev/null 2>&1; then
297                 cc_name=`./try`
298                 if test "$cc_name" = "workshop"; then
299                         ccversion="`${cc:-cc} -V 2>&1|sed -n -e '1s/^cc: //p'`"
300                         if test ! "$use64bitall_done"; then
301                                 loclibpth="/usr/lib /usr/ccs/lib `$getworkshoplibs` $loclibpth"
302                         fi
303                 fi
304         fi
305
306         # See if as(1) is GNU as(1).  GNU might not work for this job.
307         case `as --version < /dev/null 2>&1` in
308         *GNU*)
309                 cat <<END >&2
310
311 NOTE: You are using GNU as(1).  GNU as(1) might not build Perl.
312 You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin
313 to the beginning of your PATH.
314
315 END
316                 ;;
317         esac
318
319         # See if ld(1) is GNU ld(1).  GNU ld(1) might not work for this job.
320         # ld --version doesn't properly report itself as a GNU tool,
321         # as of ld version 2.6, so we need to be more strict. TWP 9/5/96
322         # Sun's ld always emits the "Software Generation Utilities" string.
323         if ld -V 2>&1 | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
324             # Ok, ld is /usr/ccs/bin/ld.
325             :
326         else
327             cat <<END >&2
328
329 NOTE: You are apparently using GNU ld(1).  GNU ld(1) might not build Perl.
330 You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin
331 to the beginning of your PATH.
332
333 END
334         fi
335 fi
336
337 # as --version or ld --version might dump core.
338 rm -f try try.c core
339 EOCBU
340
341 cat > UU/usethreads.cbu <<'EOCBU'
342 # This script UU/usethreads.cbu will get 'called-back' by Configure
343 # after it has prompted the user for whether to use threads.
344 case "$usethreads" in
345 $define|true|[yY]*)
346         ccflags="-D_REENTRANT $ccflags"
347
348         sched_yield='yield'
349         set `echo X "$libswanted "| sed -e "s/ c / pthread c /"`
350         shift
351         libswanted="$*"
352
353         # On Solaris 2.6 x86 there is a bug with sigsetjmp() and siglongjmp()
354         # when linked with the threads library, such that whatever positive
355         # value you pass to siglongjmp(), sigsetjmp() returns 1.
356         # Thanks to Simon Parsons <S.Parsons@ftel.co.uk> for this report.
357         # Sun BugID is 4117946, "sigsetjmp always returns 1 when called by
358         # siglongjmp in a MT program". As of 19980622, there is no patch
359         # available.
360         cat >try.c <<'EOM'
361         /* Test for sig(set|long)jmp bug. */
362         #include <setjmp.h>
363
364         int main()
365         {
366             sigjmp_buf env;
367             int ret;
368
369             ret = sigsetjmp(env, 1);
370             if (ret) { return ret == 2; }
371             siglongjmp(env, 2);
372         }
373 EOM
374         if test "`arch`" = i86pc -a `uname -r` = 5.6 && \
375            ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then
376             d_sigsetjmp=$undef
377             cat << 'EOM' >&2
378
379 You will see a *** WHOA THERE!!! ***  message from Configure for
380 d_sigsetjmp.  Keep the recommended value.  See hints/solaris_2.sh
381 for more information.
382
383 EOM
384         fi
385
386         # These prototypes should be visible since we using
387         # -D_REENTRANT, but that does not seem to work.
388         # It does seem to work for getnetbyaddr_r, weirdly enough,
389         # and other _r functions. (Solaris 8)
390
391         d_ctermid_r_proto="$define"
392         d_gethostbyaddr_r_proto="$define"
393         d_gethostbyname_r_proto="$define"
394         d_getnetbyname_r_proto="$define"
395         d_getprotobyname_r_proto="$define"
396         d_getprotobynumber_r_proto="$define"
397         d_getservbyname_r_proto="$define"
398         d_getservbyport_r_proto="$define"
399
400         # Ditto. (Solaris 7)
401         d_readdir_r_proto="$define"
402         d_readdir64_r_proto="$define"
403         d_tmpnam_r_proto="$define"
404         d_ttyname_r_proto="$define"
405
406         ;;
407 esac
408 EOCBU
409
410 cat > UU/uselargefiles.cbu <<'EOCBU'
411 # This script UU/uselargefiles.cbu will get 'called-back' by Configure
412 # after it has prompted the user for whether to use large files.
413 case "$uselargefiles" in
414 ''|$define|true|[yY]*)
415
416 # Keep these in the left margin.
417 ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`"
418 ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`"
419 libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
420
421     ccflags="$ccflags $ccflags_uselargefiles"
422     ldflags="$ldflags $ldflags_uselargefiles"
423     libswanted="$libswanted $libswanted_uselargefiles"
424     ;;
425 esac
426 EOCBU
427
428 # This is truly a mess.
429 case "$usemorebits" in
430 "$define"|true|[yY]*)
431         use64bitint="$define"
432         uselongdouble="$define"
433         ;;
434 esac
435
436 if test `uname -p` = "sparc"; then
437     cat > UU/use64bitint.cbu <<'EOCBU'
438 # This script UU/use64bitint.cbu will get 'called-back' by Configure
439 # after it has prompted the user for whether to use 64 bit integers.
440 case "$use64bitint" in
441 "$define"|true|[yY]*)
442             case "`uname -r`" in
443             5.[0-4])
444                 cat >&4 <<EOM
445 Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers.
446 You should upgrade to at least Solaris 2.5.
447 EOM
448                 exit 1
449                 ;;
450             esac
451
452 # gcc-2.8.1 on Solaris 8 with -Duse64bitint fails op/pat.t test 822
453 # if we compile regexec.c with -O.  Turn off optimization for that one
454 # file.  See hints/README.hints , especially 
455 # =head2 Propagating variables to config.sh, method 3.
456 #  A. Dougherty  May 24, 2002
457     case "${gccversion}-${optimize}" in
458     2.8*-O*)
459         # Honor a command-line override (rather unlikely)
460         case "$regexec_cflags" in
461         '') echo "Disabling optimization on regexec.c for gcc $gccversion" >&4
462             regexec_cflags='optimize='
463             echo "regexec_cflags='optimize=\"\"'" >> config.sh 
464             ;;
465         esac
466         ;;
467     esac
468     ;;
469 esac
470 EOCBU
471
472     cat > UU/use64bitall.cbu <<'EOCBU'
473 # This script UU/use64bitall.cbu will get 'called-back' by Configure
474 # after it has prompted the user for whether to be maximally 64 bitty.
475 case "$use64bitall-$use64bitall_done" in
476 "$define-"|true-|[yY]*-)
477             case "`uname -r`" in
478             5.[0-6])
479                 cat >&4 <<EOM
480 Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers.
481 You should upgrade to at least Solaris 2.7.
482 EOM
483                 exit 1
484                 ;;
485             esac
486             libc='/usr/lib/sparcv9/libc.so'
487             if test ! -f $libc; then
488                 cat >&4 <<EOM
489
490 I do not see the 64-bit libc, $libc.
491 Cannot continue, aborting.
492
493 EOM
494                 exit 1
495             fi
496             case "${cc:-cc} -v 2>/dev/null" in
497             *gcc*)
498                 echo 'int main() { return 0; }' > try.c
499                 case "`${cc:-cc} -mcpu=v9 -m64 -S try.c 2>&1 | grep 'm64 is not supported by this configuration'`" in
500                 *"m64 is not supported"*)
501                     cat >&4 <<EOM
502
503 Full 64-bit build is not supported by this gcc configuration.
504 Check http://gcc.gnu.org/ for the latest news of availability
505 of gcc for 64-bit Sparc.
506
507 Cannot continue, aborting.
508
509 EOM
510                     exit 1
511                     ;;
512                 esac
513                 loclibpth="/usr/lib/sparcv9 $loclibpth"
514                 ccflags="$ccflags -mcpu=v9 -m64"
515                 if test X`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null` != X; then
516                     # This adds in -Wa,-xarch=v9.  I suspect that's superfluous,
517                     # since the -m64 above should do that already.  Someone
518                     # with gcc-3.x.x, please test with gcc -v.   A.D. 20-Nov-2003
519                     ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
520                 fi
521                 ldflags="$ldflags -m64"
522                 lddlflags="$lddlflags -G -m64"
523                 ;;
524             *)
525                 ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
526                 ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
527                 lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
528                 echo "int main() { return(0); } " > try.c
529                 tryworkshopcc="${cc:-cc} try.c -o try $ccflags"
530                 loclibpth="/usr/lib/sparcv9 /usr/ccs/lib/sparcv9 `$getworkshoplibs` $loclibpth"
531                 ;;
532             esac
533
534             use64bitall_done=yes
535             archname64=64
536             ;;
537 esac
538 EOCBU
539
540     # Actually, we want to run this already now, if so requested,
541     # because we need to fix up things right now.
542     case "$use64bitall" in
543     "$define"|true|[yY]*)
544         # CBUs expect to be run in UU
545         cd UU; . ./use64bitall.cbu; cd ..
546         ;;
547     esac
548 fi
549
550 cat > UU/uselongdouble.cbu <<'EOCBU'
551 # This script UU/uselongdouble.cbu will get 'called-back' by Configure
552 # after it has prompted the user for whether to use long doubles.
553 case "$uselongdouble" in
554 "$define"|true|[yY]*)
555         if test "$cc_name" = "workshop"; then
556                 cat > try.c << 'EOM'
557 #include <sunmath.h>
558 int main() { (void) powl(2, 256); return(0); }
559 EOM
560                 if ${cc:-cc} try.c -lsunmath -o try > /dev/null 2>&1 && ./try; then
561                         libswanted="$libswanted sunmath"
562                 fi
563         else
564                 cat >&4 <<EOM
565
566 The Sun Workshop math library is either not available or not working,
567 so I do not know how to do long doubles, sorry.
568 I'm therefore disabling the use of long doubles.
569 EOM
570                 uselongdouble="$undef"
571         fi
572         ;;
573 esac
574 EOCBU
575
576 rm -f try.c try.o try a.out