Re: [PATCH 5.7.1/Configure] failure to set src='.'
[p5sagit/p5-mst-13.2.git] / hints / solaris_2.sh
CommitLineData
bc1ad331 1# hints/solaris_2.sh
73ad924b 2# Last modified: Tue Jan 2 10:16:35 2001
3# Lupe Christoph <lupe@lupe-christoph.de>
4# Based on version by:
bc1ad331 5# Andy Dougherty <doughera@lafayette.edu>
73ad924b 6# Which was based on input from lots of folks, especially
bc1ad331 7# Dean Roehrich <roehrich@ironwood-fddi.cray.com>
73ad924b 8# Additional input from Alan Burlison, Jarkko Hietaniemi,
9# and Richard Soderberg.
d420ca49 10#
11# See README.solaris for additional information.
12#
73ad924b 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
bc1ad331 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
73ad924b 21#
bc1ad331 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.
73ad924b 27
bc1ad331 28# See man vfork.
29usevfork=false
30
31d_suidsafe=define
32
33# Avoid all libraries in /usr/ucblib.
73ad924b 34# /lib is just a symlink to /usr/lib
35set `echo $glibpth | sed -e 's@/usr/ucblib@@' -e 's@ /lib @ @'`
bc1ad331 36glibpth="$*"
37
73ad924b 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.
bc1ad331 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>
73ad924b 45set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @' -e 's@ sec @ @' -e 's@ crypt @ @'`
bc1ad331 46libswanted="$*"
47
b1db1e90 48# Look for architecture name. We want to suggest a useful default.
a0d0e21e 49case "$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 ;;
59esac
a0d0e21e 60
73ad924b 61cat > UU/workshoplibpth.cbu << 'EOCBU'
62# This script UU/workshoplibpth.cbu will get 'called-back'
63# by other CBUs this script creates.
da8f3004 64case "$workshoplibpth_done" in
73ad924b 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
da8f3004 78 ;;
73ad924b 79 *) loclibpth="$loclibpth $workshoplibs"
da8f3004 80 ;;
81 esac
73ad924b 82 else
83 loclibpth="$loclibpth $workshoplibs"
84 fi
da8f3004 85 workshoplibpth_done="$define"
86 ;;
87esac
88EOCBU
89
da8f3004 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#
73ad924b 99# Here's another draft of the perl5/solaris/gcc sanity-checker.
da8f3004 100
bd89102f 101case `type ${cc:-cc}` in
102*/usr/ucb/cc*) cat <<END >&4
8e07c86e 103
73ad924b 104NOTE: Some people have reported problems with /usr/ucb/cc.
bd89102f 105If you have difficulties, please make sure the directory
106containing your C compiler is before /usr/ucb in your PATH.
8e07c86e 107
108END
109;;
110esac
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
116case $? in
1170) ;;
118*)
68dc0745 119 cat <<END >&4
8e07c86e 120
121NOTE: Your system does not have /dev/fd mounted. If you want to
122be able to use set-uid scripts you must ask your system administrator
123to mount /dev/fd.
124
125END
126 ;;
127esac
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
133case $? in
1340)
68dc0745 135 cat <<END >&4
8e07c86e 136
137NOTE: libucb has been found in /usr/lib. libucb should reside in
138/usr/ucblib. You may have trouble while building Perl extensions.
139
a0d0e21e 140END
141;;
142esac
40000a8c 143
bd89102f 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'
8e07c86e 153
154# See if make(1) is GNU make(1).
155# If it is, make sure the setgid bit is not set.
156make -v > make.vers 2>&1
157if grep GNU make.vers > /dev/null 2>&1; then
bd89102f 158 tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'`
159 case "`/usr/bin/ls -lL $tmp`" in
8e07c86e 160 ??????s*)
68dc0745 161 cat <<END >&2
73ad924b 162
8e07c86e 163NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id
164bit set. You must either rearrange your PATH to put /usr/ccs/bin before the
165GNU utilities or you must ask your system administrator to disable the
166set-group-id bit on GNU make.
167
168END
169 ;;
170 esac
171fi
172rm -f make.vers
173
73ad924b 174cat > 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
8e07c86e 178# If the C compiler is gcc:
179# - check the fixed-includes
180# - check as(1) and ld(1), they should not be GNU
bd89102f 181# (GNU as and ld 2.8.1 and later are reportedly ok, however.)
8e07c86e 182# If the C compiler is not gcc:
73ad924b 183# - Check if it is the Workshop/Forte compiler.
184# If it is, prepare for 64 bit and long doubles.
8e07c86e 185# - check as(1) and ld(1), they should not be GNU
bd89102f 186# (GNU as and ld 2.8.1 and later are reportedly ok, however.)
8e07c86e 187#
188# Watch out in case they have not set $cc.
1acf53c5 189
73ad924b 190# Perl compiled with some combinations of GNU as and ld may not
e766ed8d 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/'
73ad924b 195# (note the trailing slash is required).
e766ed8d 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
73ad924b 200# --Andy Dougherty <doughera@lafayette.edu>
e766ed8d 201# Tue Apr 13 17:19:43 EDT 1999
202
1acf53c5 203# Get gcc to share its secrets.
204echo 'main() { return 0; }' > try.c
bd89102f 205 # Indent to avoid propagation to config.sh
206 verbose=`${cc:-cc} -v -o try try.c 2>&1`
1acf53c5 207
208if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
8e07c86e 209 #
210 # Using gcc.
211 #
8e07c86e 212
8e07c86e 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.
cee5ebb5 217 # Doesn't work anymore for gcc-2.7.2.
8e07c86e 218
e766ed8d 219 # See if as(1) is GNU as(1). GNU as(1) might not work for this job.
1acf53c5 220 if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then
221 :
222 else
68dc0745 223 cat <<END >&2
8e07c86e 224
e766ed8d 225NOTE: You are using GNU as(1). GNU as(1) might not build Perl. If you
226have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/
bd89102f 227in your ${cc:-cc} command. (Note that the trailing "/" is required.)
8e07c86e 228
229END
e766ed8d 230 # Apparently not needed, at least for as 2.7 and later.
231 # cc="${cc:-cc} -B/usr/ccs/bin/"
1acf53c5 232 fi
8e07c86e 233
e766ed8d 234 # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job.
bd89102f 235 # Recompute $verbose since we may have just changed $cc.
d5fdf557 236 verbose=`${cc:-cc} -v -o try try.c 2>&1 | grep ld 2>&1`
e766ed8d 237
bd89102f 238 if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then
e766ed8d 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.
1acf53c5 247 :
248 else
e766ed8d 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.)
d5fdf557 253
254 myld=`echo $verbose| grep ld | awk '/\/ld/ {print $1}'`
e766ed8d 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
8e07c86e 264
e766ed8d 265NOTE: You are using GNU ld(1). GNU ld(1) might not build Perl. If you
266have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/
bd89102f 267in your ${cc:-cc} command. (Note that the trailing "/" is required.)
8e07c86e 268
e766ed8d 269I will try to use GNU ld by passing in the -Wl,-E flag, but if that
270doesn't work, you should use -B/usr/ccs/bin/ instead.
271
8e07c86e 272END
e766ed8d 273 ccdlflags="$ccdlflags -Wl,-E"
274 lddlflags="$lddlflags -W,l-E -G"
275 fi
1acf53c5 276 fi
8e07c86e 277
1acf53c5 278else
8e07c86e 279 #
280 # Not using gcc.
281 #
8e07c86e 282
73ad924b 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>
293int main() { return(0); }
294EOM
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
e766ed8d 300 # See if as(1) is GNU as(1). GNU might not work for this job.
8e07c86e 301 case `as --version < /dev/null 2>&1` in
302 *GNU*)
68dc0745 303 cat <<END >&2
8e07c86e 304
e766ed8d 305NOTE: You are using GNU as(1). GNU as(1) might not build Perl.
bd89102f 306You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin
307to the beginning of your PATH.
8e07c86e 308
309END
310 ;;
311 esac
312
e766ed8d 313 # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job.
91d1e749 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
8e07c86e 317 case `ld --version < /dev/null 2>&1` in
91d1e749 318 *GNU*|ld\ version\ 2*)
319 gnu_ld=true ;;
320 *) ;;
321 esac
322 if $gnu_ld ; then :
323 else
bd89102f 324 # Try to guess from path
325 case `type ld | awk '{print $NF}'` in
326 *gnu*|*GNU*|*FSF*)
91d1e749 327 gnu_ld=true ;;
328 esac
329 fi
330 if $gnu_ld ; then
68dc0745 331 cat <<END >&2
8e07c86e 332
e766ed8d 333NOTE: You are apparently using GNU ld(1). GNU ld(1) might not build Perl.
334You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin
bd89102f 335to the beginning of your PATH.
8e07c86e 336
337END
91d1e749 338 fi
8e07c86e 339
1acf53c5 340fi
8e07c86e 341
342# as --version or ld --version might dump core.
bd89102f 343rm -f try try.c
8e07c86e 344rm -f core
345
693762b4 346# XXX
73ad924b 347EOCBU
693762b4 348
de6124c8 349cat > UU/usethreads.cbu <<'EOCBU'
73ad924b 350# This script UU/usethreads.cbu will get 'called-back' by Configure
104d25b7 351# after it has prompted the user for whether to use threads.
104d25b7 352case "$usethreads" in
353$define|true|[yY]*)
104d25b7 354 ccflags="-D_REENTRANT $ccflags"
355
73ad924b 356 # sched_yield is in -lposix4 up to Solaris 2.6, in -lrt starting with Solaris 2.7
7bd161a1 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 /"`
104d25b7 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>
73ad924b 375
104d25b7 376 main()
377 {
378 sigjmp_buf env;
379 int ret;
73ad924b 380
104d25b7 381 ret = sigsetjmp(env, 1);
382 if (ret) { return ret == 2; }
383 siglongjmp(env, 2);
384 }
385EOM
7bd161a1 386 if test "`arch`" = i86pc -a `uname -r` = 5.6 && \
104d25b7 387 ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then
388 d_sigsetjmp=$undef
389 cat << 'EOM' >&2
390
391You will see a *** WHOA THERE!!! *** message from Configure for
392d_sigsetjmp. Keep the recommended value. See hints/solaris_2.sh
393for more information.
394
395EOM
396 fi
397 ;;
123f9af1 398esac
104d25b7 399EOCBU
400
923fc586 401cat > UU/uselargefiles.cbu <<'EOCBU'
73ad924b 402# This script UU/uselargefiles.cbu will get 'called-back' by Configure
5fce3f1f 403# after it has prompted the user for whether to use large files.
bd9b35c9 404case "$uselargefiles" in
10cc9d2a 405''|$define|true|[yY]*)
9422c00b 406
407# Keep these in the left margin.
45c9e83b 408ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`"
409ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`"
410libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
9422c00b 411
45c9e83b 412 ccflags="$ccflags $ccflags_uselargefiles"
413 ldflags="$ldflags $ldflags_uselargefiles"
414 libswanted="$libswanted $libswanted_uselargefiles"
6f587e79 415 ;;
bd9b35c9 416esac
5fce3f1f 417EOCBU
6b8eaf93 418
2f4ff158 419# This is truly a mess.
420case "$usemorebits" in
421"$define"|true|[yY]*)
73ad924b 422 use64bitint="$define"
423 uselongdouble="$define"
2f4ff158 424 ;;
425esac
426
73ad924b 427if 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.
431case "$use64bitint" in
432"$define"|true|[yY]*)
433 case "`uname -r`" in
434 5.[0-4])
435 cat >&4 <<EOM
436Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers.
437You should upgrade to at least Solaris 2.5.
438EOM
439 exit 1
440 ;;
441 esac
442 ;;
443esac
444EOCBU
445
446 cat > UU/use64bitall.cbu <<'EOCBU'
447# This script UU/use64bitall.cbu will get 'called-back' by Configure
c4eb8127 448# after it has prompted the user for whether to be maximally 64 bitty.
449case "$use64bitall-$use64bitall_done" in
450"$define-"|true-|[yY]*-)
104d25b7 451 case "`uname -r`" in
73ad924b 452 5.[0-6])
104d25b7 453 cat >&4 <<EOM
73ad924b 454Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers.
455You should upgrade to at least Solaris 2.7.
104d25b7 456EOM
457 exit 1
458 ;;
459 esac
282f2f4c 460 libc='/usr/lib/sparcv9/libc.so'
461 if test ! -f $libc; then
9b119d5a 462 cat >&4 <<EOM
282f2f4c 463
464I do not see the 64-bit libc, $libc.
465Cannot continue, aborting.
466
467EOM
468 exit 1
e6f120fa 469 fi
73ad924b 470 . ./workshoplibpth.cbu
4c07fe1d 471 case "$cc -v 2>/dev/null" in
472 *gcc*)
9b119d5a 473 echo 'main() { return 0; }' > try.c
9636b992 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"*)
9b119d5a 476 cat >&4 <<EOM
477
e6f120fa 478Full 64-bit build is not supported by this gcc configuration.
479Check http://gcc.gnu.org/ for the latest news of availability
480of gcc for 64-bit Sparc.
481
9b119d5a 482Cannot continue, aborting.
483
484EOM
485 exit 1
9636b992 486 ;;
73ad924b 487 esac
9b119d5a 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.
4c07fe1d 498 ;;
499 *)
0d926123 500 ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
923fc586 501 ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
0d926123 502 lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
4c07fe1d 503 ;;
73ad924b 504 esac
b1b472cb 505 libscheck='case "`/usr/bin/file $xxx`" in
7b65db70 506*64-bit*|*SPARCV9*) ;;
507*) xxx=/no/64-bit$xxx ;;
508esac'
5ae8d7b4 509
e9a51be3 510 use64bitall_done=yes
6f587e79 511 ;;
512esac
4c07fe1d 513EOCBU
73ad924b 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 ..
631e9f25 521 ;;
73ad924b 522 esac
523fi
b0ca24c6 524
923fc586 525cat > UU/uselongdouble.cbu <<'EOCBU'
73ad924b 526# This script UU/uselongdouble.cbu will get 'called-back' by Configure
923fc586 527# after it has prompted the user for whether to use long doubles.
e9a51be3 528case "$uselongdouble" in
529"$define"|true|[yY]*)
73ad924b 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
8364ae4d 534 else
73ad924b 535 cat >&4 <<EOM
536
537The Sun Workshop math library is not installed; therefore I do not
538know how to do long doubles, sorry. I'm disabling the use of long
539doubles.
540EOM
541 uselongdouble="$undef"
8364ae4d 542 fi
e9a51be3 543 ;;
544esac
73ad924b 545EOCBU
e9a51be3 546
73ad924b 547rm -f try.c try.o try a.out