Simplified the reading
[p5sagit/p5-mst-13.2.git] / hints / solaris_2.sh
CommitLineData
bc1ad331 1# hints/solaris_2.sh
55954f19 2# Contributions by (in alphabetical order) Alan Burlison, Andy Dougherty,
3# Dean Roehrich, Jarkko Hietaniemi, Lupe Christoph, Richard Soderberg and
4# many others.
d420ca49 5#
6# See README.solaris for additional information.
7#
73ad924b 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
bc1ad331 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
73ad924b 16#
bc1ad331 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.
73ad924b 22
83bd2f30 23# Solaris has secure SUID scripts
24d_suidsafe=${d_suidsafe:-define}
25
5129fff4 26# Be paranoid about nm failing to find symbols
9cad8f9e 27mistrustnm=${mistrustnm:-run}
5129fff4 28
83bd2f30 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
33usemymalloc=${usemymalloc:-false}
bc1ad331 34
35# Avoid all libraries in /usr/ucblib.
73ad924b 36# /lib is just a symlink to /usr/lib
37set `echo $glibpth | sed -e 's@/usr/ucblib@@' -e 's@ /lib @ @'`
bc1ad331 38glibpth="$*"
39
73ad924b 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.
bc1ad331 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>
73ad924b 47set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @' -e 's@ sec @ @' -e 's@ crypt @ @'`
bc1ad331 48libswanted="$*"
49
b1db1e90 50# Look for architecture name. We want to suggest a useful default.
a0d0e21e 51case "$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 ;;
61esac
a0d0e21e 62
55954f19 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'
69eval $tryworkshopcc -### 2>&1 | \
70sed -n '/ -Y /s!.* -Y "P,\([^"]*\)".*!\1!p' | tr ':' ' ' | \
71sed -e 's!/usr/lib/sparcv9!!' -e 's!/usr/ccs/lib/sparcv9!!' \
72 -e 's!/usr/lib!!g' -e 's!/usr/ccs/lib!!g'
73END
74`
da8f3004 75
d503bed0 76case "$cc" in
c678381b 77'') if test -f /opt/SUNWspro/bin/cc; then
32ca13a0 78 cc=/opt/SUNWspro/bin/cc
c678381b 79 cat <<EOF >&4
d503bed0 80
32ca13a0 81You specified no cc but you seem to have the Workshop compiler
82($cc) installed, using that.
83If you want something else, specify that in the command line,
d503bed0 84e.g. Configure -Dcc=gcc
85
86EOF
d503bed0 87 fi
88 ;;
89esac
90
da8f3004 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#
73ad924b 100# Here's another draft of the perl5/solaris/gcc sanity-checker.
da8f3004 101
bd89102f 102case `type ${cc:-cc}` in
103*/usr/ucb/cc*) cat <<END >&4
8e07c86e 104
73ad924b 105NOTE: Some people have reported problems with /usr/ucb/cc.
bd89102f 106If you have difficulties, please make sure the directory
107containing your C compiler is before /usr/ucb in your PATH.
8e07c86e 108
109END
110;;
111esac
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.
55954f19 116mount | grep '^/dev/fd ' 2>&1 > /dev/null
8e07c86e 117case $? in
1180) ;;
119*)
68dc0745 120 cat <<END >&4
8e07c86e 121
122NOTE: Your system does not have /dev/fd mounted. If you want to
123be able to use set-uid scripts you must ask your system administrator
124to mount /dev/fd.
125
126END
127 ;;
128esac
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
134case $? in
1350)
68dc0745 136 cat <<END >&4
8e07c86e 137
138NOTE: libucb has been found in /usr/lib. libucb should reside in
139/usr/ucblib. You may have trouble while building Perl extensions.
140
a0d0e21e 141END
142;;
143esac
40000a8c 144
bd89102f 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'
8e07c86e 154
155# See if make(1) is GNU make(1).
156# If it is, make sure the setgid bit is not set.
157make -v > make.vers 2>&1
158if grep GNU make.vers > /dev/null 2>&1; then
bd89102f 159 tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'`
160 case "`/usr/bin/ls -lL $tmp`" in
8e07c86e 161 ??????s*)
68dc0745 162 cat <<END >&2
73ad924b 163
8e07c86e 164NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id
165bit set. You must either rearrange your PATH to put /usr/ccs/bin before the
166GNU utilities or you must ask your system administrator to disable the
167set-group-id bit on GNU make.
168
169END
170 ;;
171 esac
172fi
173rm -f make.vers
174
73ad924b 175cat > 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
8e07c86e 179# If the C compiler is gcc:
180# - check the fixed-includes
181# - check as(1) and ld(1), they should not be GNU
bd89102f 182# (GNU as and ld 2.8.1 and later are reportedly ok, however.)
8e07c86e 183# If the C compiler is not gcc:
73ad924b 184# - Check if it is the Workshop/Forte compiler.
185# If it is, prepare for 64 bit and long doubles.
8e07c86e 186# - check as(1) and ld(1), they should not be GNU
bd89102f 187# (GNU as and ld 2.8.1 and later are reportedly ok, however.)
8e07c86e 188#
189# Watch out in case they have not set $cc.
1acf53c5 190
73ad924b 191# Perl compiled with some combinations of GNU as and ld may not
e766ed8d 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/'
73ad924b 196# (note the trailing slash is required).
e766ed8d 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
73ad924b 201# --Andy Dougherty <doughera@lafayette.edu>
e766ed8d 202# Tue Apr 13 17:19:43 EDT 1999
203
1acf53c5 204# Get gcc to share its secrets.
55954f19 205echo 'int main() { return 0; }' > try.c
bd89102f 206 # Indent to avoid propagation to config.sh
207 verbose=`${cc:-cc} -v -o try try.c 2>&1`
1acf53c5 208
209if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
8e07c86e 210 #
211 # Using gcc.
212 #
68fed2af 213 cc_name='gcc'
8e07c86e 214
e766ed8d 215 # See if as(1) is GNU as(1). GNU as(1) might not work for this job.
1acf53c5 216 if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then
217 :
218 else
68dc0745 219 cat <<END >&2
8e07c86e 220
e766ed8d 221NOTE: You are using GNU as(1). GNU as(1) might not build Perl. If you
222have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/
bd89102f 223in your ${cc:-cc} command. (Note that the trailing "/" is required.)
8e07c86e 224
225END
e766ed8d 226 # Apparently not needed, at least for as 2.7 and later.
227 # cc="${cc:-cc} -B/usr/ccs/bin/"
1acf53c5 228 fi
8e07c86e 229
e766ed8d 230 # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job.
bd89102f 231 # Recompute $verbose since we may have just changed $cc.
d5fdf557 232 verbose=`${cc:-cc} -v -o try try.c 2>&1 | grep ld 2>&1`
e766ed8d 233
bd89102f 234 if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then
e766ed8d 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.
1acf53c5 243 :
244 else
e766ed8d 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.)
d5fdf557 249
c4a5d551 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
d5fdf557 253 myld=`echo $verbose| grep ld | awk '/\/ld/ {print $1}'`
e766ed8d 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.
c4a5d551 256 # Thus myld is something like /opt/gnu/sparc-sun-solaris2.5/bin/ld
e766ed8d 257
c4a5d551 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
e766ed8d 261 # Ok, /usr/ccs/bin/ld eventually does get called.
262 :
263 else
c4a5d551 264 echo "Found GNU ld='$myld'" >&4
e766ed8d 265 cat <<END >&2
8e07c86e 266
e766ed8d 267NOTE: You are using GNU ld(1). GNU ld(1) might not build Perl. If you
268have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/
bd89102f 269in your ${cc:-cc} command. (Note that the trailing "/" is required.)
8e07c86e 270
e766ed8d 271I will try to use GNU ld by passing in the -Wl,-E flag, but if that
272doesn't work, you should use -B/usr/ccs/bin/ instead.
273
8e07c86e 274END
e766ed8d 275 ccdlflags="$ccdlflags -Wl,-E"
74144837 276 lddlflags="$lddlflags -Wl,-E -G"
e766ed8d 277 fi
1acf53c5 278 fi
8e07c86e 279
1acf53c5 280else
8e07c86e 281 #
282 # Not using gcc.
283 #
55954f19 284 cat > try.c << 'EOM'
285#include <stdio.h>
286int main() {
287#ifdef __SUNPRO_C
288 printf("workshop\n");
289#else
290 printf("\n");
291#endif
292return(0);
293}
73ad924b 294EOM
55954f19 295 tryworkshopcc="${cc:-cc} try.c -o try"
296 if $tryworkshopcc >/dev/null 2>&1; then
68fed2af 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
55954f19 303 fi
304 fi
73ad924b 305
e766ed8d 306 # See if as(1) is GNU as(1). GNU might not work for this job.
8e07c86e 307 case `as --version < /dev/null 2>&1` in
308 *GNU*)
68dc0745 309 cat <<END >&2
8e07c86e 310
e766ed8d 311NOTE: You are using GNU as(1). GNU as(1) might not build Perl.
bd89102f 312You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin
313to the beginning of your PATH.
8e07c86e 314
315END
316 ;;
317 esac
318
e766ed8d 319 # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job.
91d1e749 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
604c6cff 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 :
91d1e749 326 else
604c6cff 327 cat <<END >&2
8e07c86e 328
e766ed8d 329NOTE: You are apparently using GNU ld(1). GNU ld(1) might not build Perl.
330You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin
bd89102f 331to the beginning of your PATH.
8e07c86e 332
333END
91d1e749 334 fi
1acf53c5 335fi
6bdd71ef 336
8e07c86e 337# as --version or ld --version might dump core.
55954f19 338rm -f try try.c core
73ad924b 339EOCBU
693762b4 340
de6124c8 341cat > UU/usethreads.cbu <<'EOCBU'
73ad924b 342# This script UU/usethreads.cbu will get 'called-back' by Configure
104d25b7 343# after it has prompted the user for whether to use threads.
104d25b7 344case "$usethreads" in
345$define|true|[yY]*)
104d25b7 346 ccflags="-D_REENTRANT $ccflags"
347
6bdd71ef 348 sched_yield='yield'
349 set `echo X "$libswanted "| sed -e "s/ c / pthread c /"`
104d25b7 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>
73ad924b 363
55954f19 364 int main()
104d25b7 365 {
366 sigjmp_buf env;
367 int ret;
73ad924b 368
104d25b7 369 ret = sigsetjmp(env, 1);
370 if (ret) { return ret == 2; }
371 siglongjmp(env, 2);
372 }
373EOM
7bd161a1 374 if test "`arch`" = i86pc -a `uname -r` = 5.6 && \
104d25b7 375 ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then
376 d_sigsetjmp=$undef
377 cat << 'EOM' >&2
378
379You will see a *** WHOA THERE!!! *** message from Configure for
380d_sigsetjmp. Keep the recommended value. See hints/solaris_2.sh
381for more information.
382
383EOM
384 fi
673e8799 385
386 # These prototypes should be visible since we using
387 # -D_REENTRANT, but that does not seem to work.
34073cab 388 # It does seem to work for getnetbyaddr_r, weirdly enough,
389 # and other _r functions. (Solaris 8)
673e8799 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
34073cab 400 # Ditto. (Solaris 7)
401 d_readdir_r_proto="$define"
402 d_readdir64_r_proto="$define"
d8c5b8d1 403 d_tmpnam_r_proto="$define"
404 d_ttyname_r_proto="$define"
34073cab 405
6e4796bd 406 ;;
123f9af1 407esac
104d25b7 408EOCBU
409
923fc586 410cat > UU/uselargefiles.cbu <<'EOCBU'
73ad924b 411# This script UU/uselargefiles.cbu will get 'called-back' by Configure
5fce3f1f 412# after it has prompted the user for whether to use large files.
bd9b35c9 413case "$uselargefiles" in
10cc9d2a 414''|$define|true|[yY]*)
9422c00b 415
416# Keep these in the left margin.
45c9e83b 417ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`"
418ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`"
419libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`"
9422c00b 420
45c9e83b 421 ccflags="$ccflags $ccflags_uselargefiles"
422 ldflags="$ldflags $ldflags_uselargefiles"
423 libswanted="$libswanted $libswanted_uselargefiles"
6f587e79 424 ;;
bd9b35c9 425esac
5fce3f1f 426EOCBU
6b8eaf93 427
2f4ff158 428# This is truly a mess.
429case "$usemorebits" in
430"$define"|true|[yY]*)
73ad924b 431 use64bitint="$define"
432 uselongdouble="$define"
2f4ff158 433 ;;
434esac
435
73ad924b 436if 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.
440case "$use64bitint" in
441"$define"|true|[yY]*)
442 case "`uname -r`" in
443 5.[0-4])
444 cat >&4 <<EOM
445Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers.
446You should upgrade to at least Solaris 2.5.
447EOM
448 exit 1
449 ;;
450 esac
a9d9270b 451
69b29070 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
69b29070 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 ;;
469esac
73ad924b 470EOCBU
471
472 cat > UU/use64bitall.cbu <<'EOCBU'
473# This script UU/use64bitall.cbu will get 'called-back' by Configure
c4eb8127 474# after it has prompted the user for whether to be maximally 64 bitty.
475case "$use64bitall-$use64bitall_done" in
476"$define-"|true-|[yY]*-)
104d25b7 477 case "`uname -r`" in
73ad924b 478 5.[0-6])
104d25b7 479 cat >&4 <<EOM
73ad924b 480Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers.
481You should upgrade to at least Solaris 2.7.
104d25b7 482EOM
483 exit 1
484 ;;
485 esac
282f2f4c 486 libc='/usr/lib/sparcv9/libc.so'
487 if test ! -f $libc; then
9b119d5a 488 cat >&4 <<EOM
282f2f4c 489
490I do not see the 64-bit libc, $libc.
491Cannot continue, aborting.
492
493EOM
494 exit 1
e6f120fa 495 fi
6bdd71ef 496 case "${cc:-cc} -v 2>/dev/null" in
4c07fe1d 497 *gcc*)
55954f19 498 echo 'int main() { return 0; }' > try.c
9636b992 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"*)
9b119d5a 501 cat >&4 <<EOM
502
e6f120fa 503Full 64-bit build is not supported by this gcc configuration.
504Check http://gcc.gnu.org/ for the latest news of availability
505of gcc for 64-bit Sparc.
506
9b119d5a 507Cannot continue, aborting.
508
509EOM
510 exit 1
9636b992 511 ;;
73ad924b 512 esac
55954f19 513 loclibpth="/usr/lib/sparcv9 $loclibpth"
9b119d5a 514 ccflags="$ccflags -mcpu=v9 -m64"
515 if test X`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null` != X; then
516 ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
517 fi
518 # no changes to ld flags, as (according to man ld):
519 #
520 # There is no specific option that tells ld to link 64-bit
521 # objects; the class of the first object that gets processed
522 # by ld determines whether it is to perform a 32-bit or a
523 # 64-bit link edit.
4c07fe1d 524 ;;
525 *)
0d926123 526 ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`"
923fc586 527 ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
0d926123 528 lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`"
55954f19 529 echo "int main() { return(0); } " > try.c
530 tryworkshopcc="${cc:-cc} try.c -o try $ccflags"
531 loclibpth="/usr/lib/sparcv9 /usr/ccs/lib/sparcv9 `$getworkshoplibs` $loclibpth"
4c07fe1d 532 ;;
73ad924b 533 esac
5ae8d7b4 534
e9a51be3 535 use64bitall_done=yes
5cfbcfcd 536 archname64=64
6f587e79 537 ;;
538esac
4c07fe1d 539EOCBU
73ad924b 540
541 # Actually, we want to run this already now, if so requested,
542 # because we need to fix up things right now.
543 case "$use64bitall" in
544 "$define"|true|[yY]*)
545 # CBUs expect to be run in UU
546 cd UU; . ./use64bitall.cbu; cd ..
631e9f25 547 ;;
73ad924b 548 esac
549fi
b0ca24c6 550
923fc586 551cat > UU/uselongdouble.cbu <<'EOCBU'
73ad924b 552# This script UU/uselongdouble.cbu will get 'called-back' by Configure
923fc586 553# after it has prompted the user for whether to use long doubles.
e9a51be3 554case "$uselongdouble" in
555"$define"|true|[yY]*)
68fed2af 556 if test "$cc_name" = "workshop"; then
55954f19 557 cat > try.c << 'EOM'
558#include <sunmath.h>
559int main() { (void) powl(2, 256); return(0); }
560EOM
6bdd71ef 561 if ${cc:-cc} try.c -lsunmath -o try > /dev/null 2>&1 && ./try; then
55954f19 562 libswanted="$libswanted sunmath"
563 fi
8364ae4d 564 else
73ad924b 565 cat >&4 <<EOM
566
55954f19 567The Sun Workshop math library is either not available or not working,
568so I do not know how to do long doubles, sorry.
569I'm therefore disabling the use of long doubles.
73ad924b 570EOM
571 uselongdouble="$undef"
8364ae4d 572 fi
e9a51be3 573 ;;
574esac
73ad924b 575EOCBU
e9a51be3 576
73ad924b 577rm -f try.c try.o try a.out