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