Commit | Line | Data |
---|---|---|
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 |
24 | d_suidsafe=${d_suidsafe:-define} | |
25 | ||
5129fff4 JH |
26 | # Be paranoid about nm failing to find symbols |
27 | mistrustnm=run | |
28 | ||
83bd2f30 LC |
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 | |
33 | usemymalloc=${usemymalloc:-false} | |
bc1ad331 JH |
34 | |
35 | # Avoid all libraries in /usr/ucblib. | |
73ad924b LC |
36 | # /lib is just a symlink to /usr/lib |
37 | set `echo $glibpth | sed -e 's@/usr/ucblib@@' -e 's@ /lib @ @'` | |
bc1ad331 JH |
38 | glibpth="$*" |
39 | ||
73ad924b LC |
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 JH |
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 | 47 | set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @' -e 's@ sec @ @' -e 's@ crypt @ @'` |
bc1ad331 JH |
48 | libswanted="$*" |
49 | ||
b1db1e90 | 50 | # Look for architecture name. We want to suggest a useful default. |
a0d0e21e LW |
51 | case "$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 | ;; | |
61 | esac | |
a0d0e21e | 62 | |
55954f19 JH |
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' | |
69 | eval $tryworkshopcc -### 2>&1 | \ | |
70 | sed -n '/ -Y /s!.* -Y "P,\([^"]*\)".*!\1!p' | tr ':' ' ' | \ | |
71 | sed -e 's!/usr/lib/sparcv9!!' -e 's!/usr/ccs/lib/sparcv9!!' \ | |
72 | -e 's!/usr/lib!!g' -e 's!/usr/ccs/lib!!g' | |
73 | END | |
74 | ` | |
da8f3004 | 75 | |
d503bed0 | 76 | case "$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 JH |
81 | You specified no cc but you seem to have the Workshop compiler |
82 | ($cc) installed, using that. | |
83 | If you want something else, specify that in the command line, | |
d503bed0 JH |
84 | e.g. Configure -Dcc=gcc |
85 | ||
86 | EOF | |
d503bed0 JH |
87 | fi |
88 | ;; | |
89 | esac | |
90 | ||
da8f3004 JH |
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 AD |
102 | case `type ${cc:-cc}` in |
103 | */usr/ucb/cc*) cat <<END >&4 | |
8e07c86e | 104 | |
73ad924b | 105 | NOTE: Some people have reported problems with /usr/ucb/cc. |
bd89102f AD |
106 | If you have difficulties, please make sure the directory |
107 | containing your C compiler is before /usr/ucb in your PATH. | |
8e07c86e AD |
108 | |
109 | END | |
110 | ;; | |
111 | esac | |
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 | 116 | mount | grep '^/dev/fd ' 2>&1 > /dev/null |
8e07c86e AD |
117 | case $? in |
118 | 0) ;; | |
119 | *) | |
68dc0745 | 120 | cat <<END >&4 |
8e07c86e AD |
121 | |
122 | NOTE: Your system does not have /dev/fd mounted. If you want to | |
123 | be able to use set-uid scripts you must ask your system administrator | |
124 | to mount /dev/fd. | |
125 | ||
126 | END | |
127 | ;; | |
128 | esac | |
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 | |
134 | case $? in | |
135 | 0) | |
68dc0745 | 136 | cat <<END >&4 |
8e07c86e AD |
137 | |
138 | NOTE: libucb has been found in /usr/lib. libucb should reside in | |
139 | /usr/ucblib. You may have trouble while building Perl extensions. | |
140 | ||
a0d0e21e LW |
141 | END |
142 | ;; | |
143 | esac | |
40000a8c | 144 | |
bd89102f AD |
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 AD |
154 | |
155 | # See if make(1) is GNU make(1). | |
156 | # If it is, make sure the setgid bit is not set. | |
157 | make -v > make.vers 2>&1 | |
158 | if grep GNU make.vers > /dev/null 2>&1; then | |
bd89102f AD |
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 AD |
164 | NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id |
165 | bit set. You must either rearrange your PATH to put /usr/ccs/bin before the | |
166 | GNU utilities or you must ask your system administrator to disable the | |
167 | set-group-id bit on GNU make. | |
168 | ||
169 | END | |
170 | ;; | |
171 | esac | |
172 | fi | |
173 | rm -f make.vers | |
174 | ||
73ad924b LC |
175 | cat > 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 AD |
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 LC |
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 AD |
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 AD |
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 AD |
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 AD |
202 | # Tue Apr 13 17:19:43 EDT 1999 |
203 | ||
1acf53c5 | 204 | # Get gcc to share its secrets. |
55954f19 | 205 | echo 'int main() { return 0; }' > try.c |
bd89102f AD |
206 | # Indent to avoid propagation to config.sh |
207 | verbose=`${cc:-cc} -v -o try try.c 2>&1` | |
1acf53c5 SZ |
208 | |
209 | if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then | |
8e07c86e AD |
210 | # |
211 | # Using gcc. | |
212 | # | |
55954f19 | 213 | ccversion='gcc' |
8e07c86e | 214 | |
e766ed8d | 215 | # See if as(1) is GNU as(1). GNU as(1) might not work for this job. |
1acf53c5 SZ |
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 AD |
221 | NOTE: You are using GNU as(1). GNU as(1) might not build Perl. If you |
222 | have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/ | |
bd89102f | 223 | in your ${cc:-cc} command. (Note that the trailing "/" is required.) |
8e07c86e AD |
224 | |
225 | END | |
e766ed8d AD |
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 AD |
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 SZ |
243 | : |
244 | else | |
e766ed8d AD |
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 RB |
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 AD |
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 RB |
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 AD |
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 AD |
267 | NOTE: You are using GNU ld(1). GNU ld(1) might not build Perl. If you |
268 | have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/ | |
bd89102f | 269 | in your ${cc:-cc} command. (Note that the trailing "/" is required.) |
8e07c86e | 270 | |
e766ed8d AD |
271 | I will try to use GNU ld by passing in the -Wl,-E flag, but if that |
272 | doesn't work, you should use -B/usr/ccs/bin/ instead. | |
273 | ||
8e07c86e | 274 | END |
e766ed8d | 275 | ccdlflags="$ccdlflags -Wl,-E" |
74144837 | 276 | lddlflags="$lddlflags -Wl,-E -G" |
e766ed8d | 277 | fi |
1acf53c5 | 278 | fi |
8e07c86e | 279 | |
1acf53c5 | 280 | else |
8e07c86e AD |
281 | # |
282 | # Not using gcc. | |
283 | # | |
55954f19 JH |
284 | cat > try.c << 'EOM' |
285 | #include <stdio.h> | |
286 | int main() { | |
287 | #ifdef __SUNPRO_C | |
288 | printf("workshop\n"); | |
289 | #else | |
290 | printf("\n"); | |
291 | #endif | |
292 | return(0); | |
293 | } | |
73ad924b | 294 | EOM |
55954f19 JH |
295 | tryworkshopcc="${cc:-cc} try.c -o try" |
296 | if $tryworkshopcc >/dev/null 2>&1; then | |
297 | ccversion=`./try` | |
298 | if test "$ccversion" = "workshop" -a ! "$use64bitall_done"; then | |
299 | loclibpth="/usr/lib /usr/ccs/lib `$getworkshoplibs` $loclibpth" | |
300 | fi | |
301 | fi | |
73ad924b | 302 | |
e766ed8d | 303 | # See if as(1) is GNU as(1). GNU might not work for this job. |
8e07c86e AD |
304 | case `as --version < /dev/null 2>&1` in |
305 | *GNU*) | |
68dc0745 | 306 | cat <<END >&2 |
8e07c86e | 307 | |
e766ed8d | 308 | NOTE: You are using GNU as(1). GNU as(1) might not build Perl. |
bd89102f AD |
309 | You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin |
310 | to the beginning of your PATH. | |
8e07c86e AD |
311 | |
312 | END | |
313 | ;; | |
314 | esac | |
315 | ||
e766ed8d | 316 | # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job. |
91d1e749 | 317 | # ld --version doesn't properly report itself as a GNU tool, |
318 | # as of ld version 2.6, so we need to be more strict. TWP 9/5/96 | |
604c6cff AD |
319 | # Sun's ld always emits the "Software Generation Utilities" string. |
320 | if ld -V 2>&1 | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then | |
321 | # Ok, ld is /usr/ccs/bin/ld. | |
322 | : | |
91d1e749 | 323 | else |
604c6cff | 324 | cat <<END >&2 |
8e07c86e | 325 | |
e766ed8d AD |
326 | NOTE: You are apparently using GNU ld(1). GNU ld(1) might not build Perl. |
327 | You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin | |
bd89102f | 328 | to the beginning of your PATH. |
8e07c86e AD |
329 | |
330 | END | |
91d1e749 | 331 | fi |
1acf53c5 | 332 | fi |
6bdd71ef AB |
333 | |
334 | # Check to see if the selected compiler and linker | |
335 | # support the -z ignore, -z lazyload and -z combreloc flags. | |
336 | echo "int main() { return(0); } " > try.c | |
337 | zflgs='' | |
338 | for zf in ignore lazyload combreloc; do | |
339 | if ${cc:-cc} -o try try.c -z $zf > /dev/null 2>&1; then | |
340 | zflgs="$zflgs -z $zf" | |
341 | fi | |
342 | done | |
343 | if test -n "$zflgs"; then | |
344 | ccdlflags="$ccdlflags $zflgs" | |
345 | lddlflags="$lddlflags -G $zflgs" | |
346 | fi | |
347 | ||
8e07c86e | 348 | # as --version or ld --version might dump core. |
55954f19 | 349 | rm -f try try.c core |
73ad924b | 350 | EOCBU |
693762b4 | 351 | |
de6124c8 | 352 | cat > UU/usethreads.cbu <<'EOCBU' |
73ad924b | 353 | # This script UU/usethreads.cbu will get 'called-back' by Configure |
104d25b7 | 354 | # after it has prompted the user for whether to use threads. |
104d25b7 JH |
355 | case "$usethreads" in |
356 | $define|true|[yY]*) | |
104d25b7 JH |
357 | ccflags="-D_REENTRANT $ccflags" |
358 | ||
6bdd71ef AB |
359 | sched_yield='yield' |
360 | set `echo X "$libswanted "| sed -e "s/ c / pthread c /"` | |
104d25b7 JH |
361 | shift |
362 | libswanted="$*" | |
363 | ||
364 | # On Solaris 2.6 x86 there is a bug with sigsetjmp() and siglongjmp() | |
365 | # when linked with the threads library, such that whatever positive | |
366 | # value you pass to siglongjmp(), sigsetjmp() returns 1. | |
367 | # Thanks to Simon Parsons <S.Parsons@ftel.co.uk> for this report. | |
368 | # Sun BugID is 4117946, "sigsetjmp always returns 1 when called by | |
369 | # siglongjmp in a MT program". As of 19980622, there is no patch | |
370 | # available. | |
371 | cat >try.c <<'EOM' | |
372 | /* Test for sig(set|long)jmp bug. */ | |
373 | #include <setjmp.h> | |
73ad924b | 374 | |
55954f19 | 375 | int main() |
104d25b7 JH |
376 | { |
377 | sigjmp_buf env; | |
378 | int ret; | |
73ad924b | 379 | |
104d25b7 JH |
380 | ret = sigsetjmp(env, 1); |
381 | if (ret) { return ret == 2; } | |
382 | siglongjmp(env, 2); | |
383 | } | |
384 | EOM | |
7bd161a1 | 385 | if test "`arch`" = i86pc -a `uname -r` = 5.6 && \ |
104d25b7 JH |
386 | ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then |
387 | d_sigsetjmp=$undef | |
388 | cat << 'EOM' >&2 | |
389 | ||
390 | You will see a *** WHOA THERE!!! *** message from Configure for | |
391 | d_sigsetjmp. Keep the recommended value. See hints/solaris_2.sh | |
392 | for more information. | |
393 | ||
394 | EOM | |
395 | fi | |
673e8799 JH |
396 | |
397 | # These prototypes should be visible since we using | |
398 | # -D_REENTRANT, but that does not seem to work. | |
34073cab JH |
399 | # It does seem to work for getnetbyaddr_r, weirdly enough, |
400 | # and other _r functions. (Solaris 8) | |
673e8799 JH |
401 | |
402 | d_ctermid_r_proto="$define" | |
403 | d_gethostbyaddr_r_proto="$define" | |
404 | d_gethostbyname_r_proto="$define" | |
405 | d_getnetbyname_r_proto="$define" | |
406 | d_getprotobyname_r_proto="$define" | |
407 | d_getprotobynumber_r_proto="$define" | |
408 | d_getservbyname_r_proto="$define" | |
409 | d_getservbyport_r_proto="$define" | |
410 | ||
34073cab JH |
411 | # Ditto. (Solaris 7) |
412 | d_readdir_r_proto="$define" | |
413 | d_readdir64_r_proto="$define" | |
d8c5b8d1 JH |
414 | d_tmpnam_r_proto="$define" |
415 | d_ttyname_r_proto="$define" | |
34073cab | 416 | |
6e4796bd | 417 | ;; |
123f9af1 | 418 | esac |
104d25b7 JH |
419 | EOCBU |
420 | ||
923fc586 | 421 | cat > UU/uselargefiles.cbu <<'EOCBU' |
73ad924b | 422 | # This script UU/uselargefiles.cbu will get 'called-back' by Configure |
5fce3f1f | 423 | # after it has prompted the user for whether to use large files. |
bd9b35c9 | 424 | case "$uselargefiles" in |
10cc9d2a | 425 | ''|$define|true|[yY]*) |
9422c00b JH |
426 | |
427 | # Keep these in the left margin. | |
45c9e83b JH |
428 | ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`" |
429 | ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`" | |
430 | libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`" | |
9422c00b | 431 | |
45c9e83b JH |
432 | ccflags="$ccflags $ccflags_uselargefiles" |
433 | ldflags="$ldflags $ldflags_uselargefiles" | |
434 | libswanted="$libswanted $libswanted_uselargefiles" | |
6f587e79 | 435 | ;; |
bd9b35c9 | 436 | esac |
5fce3f1f | 437 | EOCBU |
6b8eaf93 | 438 | |
2f4ff158 JH |
439 | # This is truly a mess. |
440 | case "$usemorebits" in | |
441 | "$define"|true|[yY]*) | |
73ad924b LC |
442 | use64bitint="$define" |
443 | uselongdouble="$define" | |
2f4ff158 JH |
444 | ;; |
445 | esac | |
446 | ||
73ad924b LC |
447 | if test `uname -p` = "sparc"; then |
448 | cat > UU/use64bitint.cbu <<'EOCBU' | |
449 | # This script UU/use64bitint.cbu will get 'called-back' by Configure | |
450 | # after it has prompted the user for whether to use 64 bit integers. | |
451 | case "$use64bitint" in | |
452 | "$define"|true|[yY]*) | |
453 | case "`uname -r`" in | |
454 | 5.[0-4]) | |
455 | cat >&4 <<EOM | |
456 | Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers. | |
457 | You should upgrade to at least Solaris 2.5. | |
458 | EOM | |
459 | exit 1 | |
460 | ;; | |
461 | esac | |
462 | ;; | |
463 | esac | |
69b29070 AD |
464 | # gcc-2.8.1 on Solaris 8 with -Duse64bitint fails op/pat.t test 822 |
465 | # if we compile regexec.c with -O. Turn off optimization for that one | |
466 | # file. See hints/README.hints , especially | |
467 | # =head2 Propagating variables to config.sh, method 3. | |
468 | # A. Dougherty May 24, 2002 | |
469 | case "$use64bitint" in | |
470 | "$define") | |
471 | case "${gccversion}-${optimize}" in | |
472 | 2.8*-O*) | |
473 | # Honor a command-line override (rather unlikely) | |
474 | case "$regexec_cflags" in | |
475 | '') echo "Disabling optimization on regexec.c for gcc $gccversion" >&4 | |
476 | regexec_cflags='optimize=' | |
477 | echo "regexec_cflags='optimize=\"\"'" >> config.sh | |
478 | ;; | |
479 | esac | |
480 | ;; | |
481 | esac | |
482 | ;; | |
483 | esac | |
73ad924b LC |
484 | EOCBU |
485 | ||
486 | cat > UU/use64bitall.cbu <<'EOCBU' | |
487 | # This script UU/use64bitall.cbu will get 'called-back' by Configure | |
c4eb8127 JH |
488 | # after it has prompted the user for whether to be maximally 64 bitty. |
489 | case "$use64bitall-$use64bitall_done" in | |
490 | "$define-"|true-|[yY]*-) | |
104d25b7 | 491 | case "`uname -r`" in |
73ad924b | 492 | 5.[0-6]) |
104d25b7 | 493 | cat >&4 <<EOM |
73ad924b LC |
494 | Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers. |
495 | You should upgrade to at least Solaris 2.7. | |
104d25b7 JH |
496 | EOM |
497 | exit 1 | |
498 | ;; | |
499 | esac | |
282f2f4c JH |
500 | libc='/usr/lib/sparcv9/libc.so' |
501 | if test ! -f $libc; then | |
9b119d5a | 502 | cat >&4 <<EOM |
282f2f4c JH |
503 | |
504 | I do not see the 64-bit libc, $libc. | |
505 | Cannot continue, aborting. | |
506 | ||
507 | EOM | |
508 | exit 1 | |
e6f120fa | 509 | fi |
6bdd71ef | 510 | case "${cc:-cc} -v 2>/dev/null" in |
4c07fe1d | 511 | *gcc*) |
55954f19 | 512 | echo 'int main() { return 0; }' > try.c |
9636b992 CT |
513 | case "`${cc:-cc} -mcpu=v9 -m64 -S try.c 2>&1 | grep 'm64 is not supported by this configuration'`" in |
514 | *"m64 is not supported"*) | |
9b119d5a RB |
515 | cat >&4 <<EOM |
516 | ||
e6f120fa JH |
517 | Full 64-bit build is not supported by this gcc configuration. |
518 | Check http://gcc.gnu.org/ for the latest news of availability | |
519 | of gcc for 64-bit Sparc. | |
520 | ||
9b119d5a RB |
521 | Cannot continue, aborting. |
522 | ||
523 | EOM | |
524 | exit 1 | |
9636b992 | 525 | ;; |
73ad924b | 526 | esac |
55954f19 | 527 | loclibpth="/usr/lib/sparcv9 $loclibpth" |
9b119d5a RB |
528 | ccflags="$ccflags -mcpu=v9 -m64" |
529 | if test X`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null` != X; then | |
530 | ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" | |
531 | fi | |
532 | # no changes to ld flags, as (according to man ld): | |
533 | # | |
534 | # There is no specific option that tells ld to link 64-bit | |
535 | # objects; the class of the first object that gets processed | |
536 | # by ld determines whether it is to perform a 32-bit or a | |
537 | # 64-bit link edit. | |
4c07fe1d JH |
538 | ;; |
539 | *) | |
0d926123 | 540 | ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" |
923fc586 | 541 | ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`" |
0d926123 | 542 | lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`" |
55954f19 JH |
543 | echo "int main() { return(0); } " > try.c |
544 | tryworkshopcc="${cc:-cc} try.c -o try $ccflags" | |
545 | loclibpth="/usr/lib/sparcv9 /usr/ccs/lib/sparcv9 `$getworkshoplibs` $loclibpth" | |
4c07fe1d | 546 | ;; |
73ad924b | 547 | esac |
5ae8d7b4 | 548 | |
e9a51be3 | 549 | use64bitall_done=yes |
5cfbcfcd | 550 | archname64=64 |
6f587e79 JH |
551 | ;; |
552 | esac | |
4c07fe1d | 553 | EOCBU |
73ad924b LC |
554 | |
555 | # Actually, we want to run this already now, if so requested, | |
556 | # because we need to fix up things right now. | |
557 | case "$use64bitall" in | |
558 | "$define"|true|[yY]*) | |
559 | # CBUs expect to be run in UU | |
560 | cd UU; . ./use64bitall.cbu; cd .. | |
631e9f25 | 561 | ;; |
73ad924b LC |
562 | esac |
563 | fi | |
b0ca24c6 | 564 | |
923fc586 | 565 | cat > UU/uselongdouble.cbu <<'EOCBU' |
73ad924b | 566 | # This script UU/uselongdouble.cbu will get 'called-back' by Configure |
923fc586 | 567 | # after it has prompted the user for whether to use long doubles. |
e9a51be3 JH |
568 | case "$uselongdouble" in |
569 | "$define"|true|[yY]*) | |
55954f19 JH |
570 | if test "$ccversion" = "workshop"; then |
571 | cat > try.c << 'EOM' | |
572 | #include <sunmath.h> | |
573 | int main() { (void) powl(2, 256); return(0); } | |
574 | EOM | |
6bdd71ef | 575 | if ${cc:-cc} try.c -lsunmath -o try > /dev/null 2>&1 && ./try; then |
55954f19 JH |
576 | libswanted="$libswanted sunmath" |
577 | fi | |
8364ae4d | 578 | else |
73ad924b LC |
579 | cat >&4 <<EOM |
580 | ||
55954f19 JH |
581 | The Sun Workshop math library is either not available or not working, |
582 | so I do not know how to do long doubles, sorry. | |
583 | I'm therefore disabling the use of long doubles. | |
73ad924b LC |
584 | EOM |
585 | uselongdouble="$undef" | |
8364ae4d | 586 | fi |
e9a51be3 JH |
587 | ;; |
588 | esac | |
73ad924b | 589 | EOCBU |
e9a51be3 | 590 | |
73ad924b | 591 | rm -f try.c try.o try a.out |