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