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 | 26 | # Be paranoid about nm failing to find symbols |
9cad8f9e | 27 | mistrustnm=${mistrustnm:-run} |
5129fff4 | 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 | # | |
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 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 | |
68fed2af JH |
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 JH |
303 | fi |
304 | fi | |
73ad924b | 305 | |
e766ed8d | 306 | # See if as(1) is GNU as(1). GNU might not work for this job. |
8e07c86e AD |
307 | case `as --version < /dev/null 2>&1` in |
308 | *GNU*) | |
68dc0745 | 309 | cat <<END >&2 |
8e07c86e | 310 | |
e766ed8d | 311 | NOTE: You are using GNU as(1). GNU as(1) might not build Perl. |
bd89102f AD |
312 | You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin |
313 | to the beginning of your PATH. | |
8e07c86e AD |
314 | |
315 | END | |
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 AD |
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 AD |
329 | NOTE: You are apparently using GNU ld(1). GNU ld(1) might not build Perl. |
330 | You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin | |
bd89102f | 331 | to the beginning of your PATH. |
8e07c86e AD |
332 | |
333 | END | |
91d1e749 | 334 | fi |
1acf53c5 | 335 | fi |
6bdd71ef | 336 | |
8e07c86e | 337 | # as --version or ld --version might dump core. |
55954f19 | 338 | rm -f try try.c core |
73ad924b | 339 | EOCBU |
693762b4 | 340 | |
de6124c8 | 341 | cat > 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 JH |
344 | case "$usethreads" in |
345 | $define|true|[yY]*) | |
104d25b7 JH |
346 | ccflags="-D_REENTRANT $ccflags" |
347 | ||
6bdd71ef AB |
348 | sched_yield='yield' |
349 | set `echo X "$libswanted "| sed -e "s/ c / pthread c /"` | |
104d25b7 JH |
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 JH |
365 | { |
366 | sigjmp_buf env; | |
367 | int ret; | |
73ad924b | 368 | |
104d25b7 JH |
369 | ret = sigsetjmp(env, 1); |
370 | if (ret) { return ret == 2; } | |
371 | siglongjmp(env, 2); | |
372 | } | |
373 | EOM | |
7bd161a1 | 374 | if test "`arch`" = i86pc -a `uname -r` = 5.6 && \ |
104d25b7 JH |
375 | ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then |
376 | d_sigsetjmp=$undef | |
377 | cat << 'EOM' >&2 | |
378 | ||
379 | You will see a *** WHOA THERE!!! *** message from Configure for | |
380 | d_sigsetjmp. Keep the recommended value. See hints/solaris_2.sh | |
381 | for more information. | |
382 | ||
383 | EOM | |
384 | fi | |
673e8799 JH |
385 | |
386 | # These prototypes should be visible since we using | |
387 | # -D_REENTRANT, but that does not seem to work. | |
34073cab JH |
388 | # It does seem to work for getnetbyaddr_r, weirdly enough, |
389 | # and other _r functions. (Solaris 8) | |
673e8799 JH |
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 JH |
400 | # Ditto. (Solaris 7) |
401 | d_readdir_r_proto="$define" | |
402 | d_readdir64_r_proto="$define" | |
d8c5b8d1 JH |
403 | d_tmpnam_r_proto="$define" |
404 | d_ttyname_r_proto="$define" | |
34073cab | 405 | |
6e4796bd | 406 | ;; |
123f9af1 | 407 | esac |
104d25b7 JH |
408 | EOCBU |
409 | ||
923fc586 | 410 | cat > 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 | 413 | case "$uselargefiles" in |
10cc9d2a | 414 | ''|$define|true|[yY]*) |
9422c00b JH |
415 | |
416 | # Keep these in the left margin. | |
45c9e83b JH |
417 | ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`" |
418 | ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`" | |
419 | libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`" | |
9422c00b | 420 | |
45c9e83b JH |
421 | ccflags="$ccflags $ccflags_uselargefiles" |
422 | ldflags="$ldflags $ldflags_uselargefiles" | |
423 | libswanted="$libswanted $libswanted_uselargefiles" | |
6f587e79 | 424 | ;; |
bd9b35c9 | 425 | esac |
5fce3f1f | 426 | EOCBU |
6b8eaf93 | 427 | |
2f4ff158 JH |
428 | # This is truly a mess. |
429 | case "$usemorebits" in | |
430 | "$define"|true|[yY]*) | |
73ad924b LC |
431 | use64bitint="$define" |
432 | uselongdouble="$define" | |
2f4ff158 JH |
433 | ;; |
434 | esac | |
435 | ||
73ad924b LC |
436 | if 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. | |
440 | case "$use64bitint" in | |
441 | "$define"|true|[yY]*) | |
442 | case "`uname -r`" in | |
443 | 5.[0-4]) | |
444 | cat >&4 <<EOM | |
445 | Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers. | |
446 | You should upgrade to at least Solaris 2.5. | |
447 | EOM | |
448 | exit 1 | |
449 | ;; | |
450 | esac | |
a9d9270b | 451 | |
69b29070 AD |
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 AD |
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 | ;; | |
469 | esac | |
73ad924b LC |
470 | EOCBU |
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. |
475 | case "$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 |
480 | Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers. |
481 | You should upgrade to at least Solaris 2.7. | |
104d25b7 JH |
482 | EOM |
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 | |
490 | I do not see the 64-bit libc, $libc. | |
491 | Cannot continue, aborting. | |
492 | ||
493 | EOM | |
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 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 |
503 | Full 64-bit build is not supported by this gcc configuration. |
504 | Check http://gcc.gnu.org/ for the latest news of availability | |
505 | of gcc for 64-bit Sparc. | |
506 | ||
9b119d5a RB |
507 | Cannot continue, aborting. |
508 | ||
509 | EOM | |
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 | |
0ceffaa6 AD |
516 | # This adds in -Wa,-xarch=v9. I suspect that's superfluous, |
517 | # since the -m64 above should do that already. Someone | |
518 | # with gcc-3.x.x, please test with gcc -v. A.D. 20-Nov-2003 | |
9b119d5a RB |
519 | ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" |
520 | fi | |
0ceffaa6 AD |
521 | ldflags="$ldflags -m64" |
522 | lddlflags="$lddlflags -G -m64" | |
4c07fe1d JH |
523 | ;; |
524 | *) | |
0d926123 | 525 | ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" |
923fc586 | 526 | ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`" |
0d926123 | 527 | lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`" |
55954f19 JH |
528 | echo "int main() { return(0); } " > try.c |
529 | tryworkshopcc="${cc:-cc} try.c -o try $ccflags" | |
530 | loclibpth="/usr/lib/sparcv9 /usr/ccs/lib/sparcv9 `$getworkshoplibs` $loclibpth" | |
4c07fe1d | 531 | ;; |
73ad924b | 532 | esac |
5ae8d7b4 | 533 | |
e9a51be3 | 534 | use64bitall_done=yes |
5cfbcfcd | 535 | archname64=64 |
6f587e79 JH |
536 | ;; |
537 | esac | |
4c07fe1d | 538 | EOCBU |
73ad924b LC |
539 | |
540 | # Actually, we want to run this already now, if so requested, | |
541 | # because we need to fix up things right now. | |
542 | case "$use64bitall" in | |
543 | "$define"|true|[yY]*) | |
544 | # CBUs expect to be run in UU | |
545 | cd UU; . ./use64bitall.cbu; cd .. | |
631e9f25 | 546 | ;; |
73ad924b LC |
547 | esac |
548 | fi | |
b0ca24c6 | 549 | |
923fc586 | 550 | cat > UU/uselongdouble.cbu <<'EOCBU' |
73ad924b | 551 | # This script UU/uselongdouble.cbu will get 'called-back' by Configure |
923fc586 | 552 | # after it has prompted the user for whether to use long doubles. |
e9a51be3 JH |
553 | case "$uselongdouble" in |
554 | "$define"|true|[yY]*) | |
68fed2af | 555 | if test "$cc_name" = "workshop"; then |
55954f19 JH |
556 | cat > try.c << 'EOM' |
557 | #include <sunmath.h> | |
558 | int main() { (void) powl(2, 256); return(0); } | |
559 | EOM | |
6bdd71ef | 560 | if ${cc:-cc} try.c -lsunmath -o try > /dev/null 2>&1 && ./try; then |
55954f19 JH |
561 | libswanted="$libswanted sunmath" |
562 | fi | |
8364ae4d | 563 | else |
73ad924b LC |
564 | cat >&4 <<EOM |
565 | ||
55954f19 JH |
566 | The Sun Workshop math library is either not available or not working, |
567 | so I do not know how to do long doubles, sorry. | |
568 | I'm therefore disabling the use of long doubles. | |
73ad924b LC |
569 | EOM |
570 | uselongdouble="$undef" | |
8364ae4d | 571 | fi |
e9a51be3 JH |
572 | ;; |
573 | esac | |
73ad924b | 574 | EOCBU |
e9a51be3 | 575 | |
73ad924b | 576 | rm -f try.c try.o try a.out |