1b3ec58c9476d38ced9769ead083e3960f7dab26
[p5sagit/p5-mst-13.2.git] / hints / solaris_2.sh
1 # hints/solaris_2.sh
2 # Last modified:  Thu Nov  9 14:21:02 EST 2000
3 # Andy Dougherty  <doughera@lafayette.edu>
4 # Based on input from lots of folks, especially
5 # Dean Roehrich <roehrich@ironwood-fddi.cray.com>
6 #
7 # See README.solaris for additional information.
8 #
9 # If perl fails tests that involve dynamic loading of extensions, and
10 # you are using gcc, be sure that you are NOT using GNU as and ld.  One
11 # way to do that is to invoke Configure with
12
13 #     sh Configure -Dcc='gcc -B/usr/ccs/bin/'
14 #
15 #  (Note that the trailing slash is *required*.)
16 #  gcc will occasionally emit warnings about "unused prefix", but
17 #  these ought to be harmless.  See below for more details.
18  
19 # See man vfork.
20 usevfork=false
21
22 d_suidsafe=define
23
24 # Avoid all libraries in /usr/ucblib.
25 set `echo $glibpth | sed -e 's@/usr/ucblib@@'`
26 glibpth="$*"
27
28 # Remove bad libraries.  -lucb contains incompatible routines.
29 # -lld doesn't do anything useful.
30 # -lmalloc can cause a problem with GNU CC & Solaris.  Specifically,
31 # libmalloc.a may allocate memory that is only 4 byte aligned, but
32 # GNU CC on the Sparc assumes that doubles are 8 byte aligned.
33 # Thanks to  Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>
34 set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @'`
35 libswanted="$*"
36
37 # Look for architecture name.  We want to suggest a useful default.
38 case "$archname" in
39 '')
40     if test -f /usr/bin/arch; then
41         archname=`/usr/bin/arch`
42         archname="${archname}-${osname}"
43     elif test -f /usr/ucb/arch; then
44         archname=`/usr/ucb/arch`
45         archname="${archname}-${osname}"
46     fi
47     ;;
48 esac
49
50 cc=${cc:-cc}
51
52 ccversion="`$cc -V 2>&1|head -1|sed 's/^cc: //'`"
53 case "$ccversion" in
54 *WorkShop*) ccname=workshop ;;
55 *) ccversion='' ;;
56 esac
57
58 cat >UU/workshoplibpth.cbu<<'EOCBU'
59 case "$workshoplibpth_done" in
60 '')     case "$use64bitall" in
61         "$define"|true|[yY]*)
62             loclibpth="$loclibpth /usr/lib/sparcv9"
63             if test -n "$workshoplibs"; then
64                 loclibpth=`echo $loclibpth | sed -e "s% $workshoplibs%%" `
65                 for lib in $workshoplibs; do
66                     # Logically, it should be sparcv9.
67                     # But the reality fights back, it's v9.
68                     loclibpth="$loclibpth $lib/sparcv9 $lib/v9"
69                 done
70             fi 
71             # Really?
72             ccflags="$ccflags -Dstdchar='unsigned char'"
73             ;;
74         *)  loclibpth="$loclibpth $workshoplibs"  
75             ;;
76         esac
77         workshoplibpth_done="$define"
78         ;;
79 esac
80 EOCBU
81
82 case "$ccname" in
83 workshop)
84         cat >try.c <<EOF
85 #include <sunmath.h>
86 int main() { return(0); }
87 EOF
88         workshoplibs=`cc -### try.c -lsunmath -o try 2>&1|grep " -Y "|sed 's%.* -Y "P,\(.*\)".*%\1%'|tr ':' '\n'|grep '/SUNWspro/'`
89         . ./UU/workshoplibpth.cbu
90         ;;
91 esac
92
93 ######################################################
94 # General sanity testing.  See below for excerpts from the Solaris FAQ.
95 #
96 # From roehrich@ironwood-fddi.cray.com Wed Sep 27 12:51:46 1995
97 # Date: Thu, 7 Sep 1995 16:31:40 -0500
98 # From: Dean Roehrich <roehrich@ironwood-fddi.cray.com>
99 # To: perl5-porters@africa.nicoh.com
100 # Subject: Re: On perl5/solaris/gcc
101 #
102 # Here's another draft of the perl5/solaris/gcc sanity-checker. 
103
104 case `type ${cc:-cc}` in
105 */usr/ucb/cc*) cat <<END >&4
106
107 NOTE:  Some people have reported problems with /usr/ucb/cc.  
108 If you have difficulties, please make sure the directory
109 containing your C compiler is before /usr/ucb in your PATH.
110
111 END
112 ;;
113 esac
114
115
116 # Check that /dev/fd is mounted.  If it is not mounted, let the
117 # user know that suid scripts may not work.
118 /usr/bin/df /dev/fd 2>&1 > /dev/null
119 case $? in
120 0) ;;
121 *)
122         cat <<END >&4
123
124 NOTE: Your system does not have /dev/fd mounted.  If you want to
125 be able to use set-uid scripts you must ask your system administrator
126 to mount /dev/fd.
127
128 END
129         ;;
130 esac
131
132
133 # See if libucb can be found in /usr/lib.  If it is, warn the user
134 # that this may cause problems while building Perl extensions.
135 /usr/bin/ls /usr/lib/libucb* >/dev/null 2>&1
136 case $? in
137 0)
138         cat <<END >&4
139
140 NOTE: libucb has been found in /usr/lib.  libucb should reside in
141 /usr/ucblib.  You may have trouble while building Perl extensions.
142
143 END
144 ;;
145 esac
146
147 # Use shell built-in 'type' command instead of /usr/bin/which to
148 # avoid possible csh start-up problems and also to use the same shell
149 # we'll be using to Configure and make perl.
150 # The path name is the last field in the output, but the type command
151 # has an annoying array of possible outputs, e.g.:
152 #       make is hashed (/opt/gnu/bin/make)
153 #       cc is /usr/ucb/cc
154 #       foo not found
155 # use a command like type make | awk '{print $NF}' | sed 's/[()]//g'
156
157 # See if make(1) is GNU make(1).
158 # If it is, make sure the setgid bit is not set.
159 make -v > make.vers 2>&1
160 if grep GNU make.vers > /dev/null 2>&1; then
161     tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'`
162     case "`/usr/bin/ls -lL $tmp`" in
163     ??????s*)
164             cat <<END >&2
165         
166 NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id
167 bit set.  You must either rearrange your PATH to put /usr/ccs/bin before the
168 GNU utilities or you must ask your system administrator to disable the
169 set-group-id bit on GNU make.
170
171 END
172             ;;
173     esac
174 fi
175 rm -f make.vers
176
177 # XXX EXPERIMENTAL  A.D.  2/27/1998
178 # XXX This script UU/cc.cbu will get 'called-back' by Configure after it
179 # XXX has prompted the user for the C compiler to use.
180 cat > UU/cc.cbu <<'EOSH'
181 # If the C compiler is gcc:
182 #   - check the fixed-includes
183 #   - check as(1) and ld(1), they should not be GNU
184 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
185 # If the C compiler is not gcc:
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 '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
214         tmp=`echo "$verbose" | grep '^Reading' |
215                 awk '{print $NF}'  | sed 's/specs$/include/'`
216
217         # Determine if the fixed-includes look like they'll work.
218         # Doesn't work anymore for gcc-2.7.2.
219
220         # See if as(1) is GNU as(1).  GNU as(1) might not work for this job.
221         if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then
222             :
223         else
224             cat <<END >&2
225
226 NOTE: You are using GNU as(1).  GNU as(1) might not build Perl.  If you
227 have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/
228 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
229
230 END
231             # Apparently not needed, at least for as 2.7 and later.
232             # cc="${cc:-cc} -B/usr/ccs/bin/"
233         fi
234
235         # See if ld(1) is GNU ld(1).  GNU ld(1) might not work for this job.
236         # Recompute $verbose since we may have just changed $cc.
237         verbose=`${cc:-cc} -v -o try try.c 2>&1 | grep ld 2>&1`
238
239         if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then
240             # Ok, gcc directly calls the Solaris /usr/ccs/bin/ld.
241             :
242         elif echo "$verbose" | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
243             # Hmm.  gcc doesn't call /usr/ccs/bin/ld directly, but it
244             # does appear to be using it eventually.  egcs-1.0.3's ld
245             # wrapper does this.
246             # All Solaris versions of ld I've seen contain the magic
247             # string used in the grep.
248             :
249         else
250             # No evidence yet of /usr/ccs/bin/ld.  Some versions
251             # of egcs's ld wrapper call /usr/ccs/bin/ld in turn but
252             # apparently don't reveal that unless you pass in -V.
253             # (This may all depend on local configurations too.)
254
255             myld=`echo $verbose| grep ld | awk '/\/ld/ {print $1}'`
256             # This assumes that gcc's output will not change, and that
257             # /full/path/to/ld will be the first word of the output.
258             # Thus myld is something like opt/gnu/sparc-sun-solaris2.5/bin/ld
259
260             if $myld -V 2>&1 | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then
261                 # Ok, /usr/ccs/bin/ld eventually does get called.
262                 :
263             else
264                 cat <<END >&2
265
266 NOTE: You are using GNU ld(1).  GNU ld(1) might not build Perl.  If you
267 have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/
268 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
269
270 I will try to use GNU ld by passing in the -Wl,-E flag, but if that
271 doesn't work, you should use -B/usr/ccs/bin/ instead.
272
273 END
274                 ccdlflags="$ccdlflags -Wl,-E"
275                 lddlflags="$lddlflags -W,l-E -G"
276             fi
277         fi
278
279 else
280         #
281         # Not using gcc.
282         #
283
284         # See if as(1) is GNU as(1).  GNU might not work for this job.
285         case `as --version < /dev/null 2>&1` in
286         *GNU*)
287                 cat <<END >&2
288
289 NOTE: You are using GNU as(1).  GNU as(1) might not build Perl.
290 You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin
291 to the beginning of your PATH.
292
293 END
294                 ;;
295         esac
296
297         # See if ld(1) is GNU ld(1).  GNU ld(1) might not work for this job.
298         # ld --version doesn't properly report itself as a GNU tool,
299         # as of ld version 2.6, so we need to be more strict. TWP 9/5/96
300         gnu_ld=false
301         case `ld --version < /dev/null 2>&1` in
302         *GNU*|ld\ version\ 2*)
303                 gnu_ld=true ;;
304         *) ;;
305         esac
306         if $gnu_ld ; then :
307         else
308                 # Try to guess from path
309                 case `type ld | awk '{print $NF}'` in
310                 *gnu*|*GNU*|*FSF*)
311                         gnu_ld=true ;;
312                 esac
313         fi
314         if $gnu_ld ; then
315                 cat <<END >&2
316
317 NOTE: You are apparently using GNU ld(1).  GNU ld(1) might not build Perl.
318 You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin
319 to the beginning of your PATH.
320
321 END
322         fi
323
324 fi
325
326 # as --version or ld --version might dump core.
327 rm -f try try.c
328 rm -f core
329
330 # XXX
331 EOSH
332
333 cat > UU/usethreads.cbu <<'EOCBU'
334 # This script UU/usethreads.cbu will get 'called-back' by Configure 
335 # after it has prompted the user for whether to use threads.
336 case "$usethreads" in
337 $define|true|[yY]*)
338         ccflags="-D_REENTRANT $ccflags"
339
340         # sched_yield is in -lposix4 up to Solaris 2.6, in -lrt starting with Solaris 7
341         case `uname -r` in
342         5.[0-6] | 5.5.1) sched_yield_lib="posix4" ;;
343         *) sched_yield_lib="rt";
344         esac
345         set `echo X "$libswanted "| sed -e "s/ c / $sched_yield_lib pthread c /"`
346         shift
347         libswanted="$*"
348
349         # On Solaris 2.6 x86 there is a bug with sigsetjmp() and siglongjmp()
350         # when linked with the threads library, such that whatever positive
351         # value you pass to siglongjmp(), sigsetjmp() returns 1.
352         # Thanks to Simon Parsons <S.Parsons@ftel.co.uk> for this report.
353         # Sun BugID is 4117946, "sigsetjmp always returns 1 when called by
354         # siglongjmp in a MT program". As of 19980622, there is no patch
355         # available.
356         cat >try.c <<'EOM'
357         /* Test for sig(set|long)jmp bug. */
358         #include <setjmp.h>
359          
360         main()
361         {
362             sigjmp_buf env;
363             int ret;
364         
365             ret = sigsetjmp(env, 1);
366             if (ret) { return ret == 2; }
367             siglongjmp(env, 2);
368         }
369 EOM
370         if test "`arch`" = i86pc -a `uname -r` = 5.6 && \
371            ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then
372             d_sigsetjmp=$undef
373             cat << 'EOM' >&2
374
375 You will see a *** WHOA THERE!!! ***  message from Configure for
376 d_sigsetjmp.  Keep the recommended value.  See hints/solaris_2.sh
377 for more information.
378
379 EOM
380         fi
381         ;;
382 esac
383 EOCBU
384
385 cat > UU/uselargefiles.cbu <<'EOCBU'
386 # This script UU/uselargefiles.cbu will get 'called-back' by Configure 
387 # after it has prompted the user for whether to use large files.
388 case "$uselargefiles" in
389 ''|$define|true|[yY]*)
390
391 # Keep these in the left margin.
392 ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`"
393 ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`"
394 libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
395
396     ccflags="$ccflags $ccflags_uselargefiles"
397     ldflags="$ldflags $ldflags_uselargefiles"
398     libswanted="$libswanted $libswanted_uselargefiles"
399     ;;
400 esac
401 EOCBU
402
403 # This is truly a mess.
404 case "$usemorebits" in
405 "$define"|true|[yY]*)
406         use64bitint="$define"    
407         uselongdouble="$define"    
408         ;;
409 esac
410
411 cat > UU/use64bitall.cbu <<'EOCBU'
412 # This script UU/use64bitall.cbu will get 'called-back' by Configure 
413 # after it has prompted the user for whether to be maximally 64 bitty.
414 case "$use64bitall-$use64bitall_done" in
415 "$define-"|true-|[yY]*-)
416             case "`uname -r`" in
417             5.[1-6])
418                 cat >&4 <<EOM
419 Solaris `uname -r|sed -e 's/^5\.\([789]\)$/\1/'` does not support 64-bit pointers.
420 You should upgrade to at least Solaris 7.
421 EOM
422                 exit 1
423                 ;;
424             esac
425             libc='/usr/lib/sparcv9/libc.so'
426             if test ! -f $libc; then
427                 cat >&4 <<EOM
428
429 I do not see the 64-bit libc, $libc.
430 (You are either in an old sparc or in an x86.)
431 Cannot continue, aborting.
432
433 EOM
434                 exit 1
435             fi 
436             . ./UU/workshoplibpth.cbu
437             case "$cc -v 2>/dev/null" in
438             *gcc*)
439                 echo 'main() { return 0; }' > try.c
440                 case "`${cc:-cc} -mcpu=v9 -m64 -S try.c 2>&1 | grep 'm64 is not supported by this configuration'`" in
441                 *"m64 is not supported"*)
442                     cat >&4 <<EOM
443
444 Full 64-bit build not supported by this gcc configuration.
445 Cannot continue, aborting.
446
447 EOM
448                     exit 1
449                     ;;
450                 esac    
451                 ccflags="$ccflags -mcpu=v9 -m64"
452                 if test X`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null` != X; then
453                     ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
454                 fi
455                 # no changes to ld flags, as (according to man ld):
456                 #
457                 # There is no specific option that tells ld to link 64-bit
458                 # objects; the class of the first object that gets processed
459                 # by ld determines whether it is to perform a 32-bit or a
460                 # 64-bit link edit.
461                 ;;
462             *)
463                 ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
464                 ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
465                 lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
466                 ;;
467             esac        
468             libscheck='case "`/usr/bin/file $xxx`" in
469 *64-bit*|*SPARCV9*) ;;
470 *) xxx=/no/64-bit$xxx ;;
471 esac'
472             use64bitall_done=yes
473             ;;
474 esac
475 EOCBU
476  
477 # Actually, we want to run this already now, if so requested,
478 # because we need to fix up things right now.
479 case "$use64bitall" in
480 "$define"|true|[yY]*)
481         . ./UU/use64bitall.cbu
482         ;;
483 esac
484
485 cat > UU/uselongdouble.cbu <<'EOCBU'
486 # This script UU/uselongdouble.cbu will get 'called-back' by Configure 
487 # after it has prompted the user for whether to use long doubles.
488 case "$uselongdouble-$uselongdouble_done" in
489 "$define-"|true-|[yY]*-)
490         case "$ccname" in
491         workshop)
492                 libswanted="$libswanted sunmath"
493                 loclibpth="$loclibpth /opt/SUNWspro/lib"
494                 ;;
495         *)      cat >&4 <<EOM
496
497 The Sun Workshop compiler is not being used; therefore I do not see
498 the libsunmath; therefore I do not know how to do long doubles, sorry.
499 I'm disabling the use of long doubles.
500 EOM
501                 uselongdouble="$undef"
502                 ;;
503         esac
504         uselongdouble_done=yes
505         ;;
506 esac
507 EOCBU
508
509 # Actually, we want to run this already now, if so requested,
510 # because we need to fix up things right now.
511 case "$uselongdouble" in
512 "$define"|true|[yY]*)
513         . ./UU/uselongdouble.cbu
514         ;;
515 esac
516
517 rm -f try.c try.o try