Commit | Line | Data |
---|---|---|
bc1ad331 | 1 | # hints/solaris_2.sh |
73ad924b LC |
2 | # Last modified: Tue Jan 2 10:16:35 2001 |
3 | # Lupe Christoph <lupe@lupe-christoph.de> | |
4 | # Based on version by: | |
bc1ad331 | 5 | # Andy Dougherty <doughera@lafayette.edu> |
73ad924b | 6 | # Which was based on input from lots of folks, especially |
bc1ad331 | 7 | # Dean Roehrich <roehrich@ironwood-fddi.cray.com> |
73ad924b LC |
8 | # Additional input from Alan Burlison, Jarkko Hietaniemi, |
9 | # and Richard Soderberg. | |
d420ca49 AD |
10 | # |
11 | # See README.solaris for additional information. | |
12 | # | |
73ad924b LC |
13 | # For consistency with gcc, we do not adopt Sun Marketing's |
14 | # removal of the '2.' prefix from the Solaris version number. | |
15 | # (Configure tries to detect an old fixincludes and needs | |
16 | # this information.) | |
17 | ||
bc1ad331 JH |
18 | # If perl fails tests that involve dynamic loading of extensions, and |
19 | # you are using gcc, be sure that you are NOT using GNU as and ld. One | |
20 | # way to do that is to invoke Configure with | |
73ad924b | 21 | # |
bc1ad331 JH |
22 | # sh Configure -Dcc='gcc -B/usr/ccs/bin/' |
23 | # | |
24 | # (Note that the trailing slash is *required*.) | |
25 | # gcc will occasionally emit warnings about "unused prefix", but | |
26 | # these ought to be harmless. See below for more details. | |
73ad924b | 27 | |
bc1ad331 JH |
28 | # See man vfork. |
29 | usevfork=false | |
30 | ||
31 | d_suidsafe=define | |
32 | ||
33 | # Avoid all libraries in /usr/ucblib. | |
73ad924b LC |
34 | # /lib is just a symlink to /usr/lib |
35 | set `echo $glibpth | sed -e 's@/usr/ucblib@@' -e 's@ /lib @ @'` | |
bc1ad331 JH |
36 | glibpth="$*" |
37 | ||
73ad924b LC |
38 | # Remove unwanted libraries. -lucb contains incompatible routines. |
39 | # -lld and -lsec don't do anything useful. -lcrypt does not | |
40 | # really provide anything we need over -lc, so we drop it, too. | |
bc1ad331 JH |
41 | # -lmalloc can cause a problem with GNU CC & Solaris. Specifically, |
42 | # libmalloc.a may allocate memory that is only 4 byte aligned, but | |
43 | # GNU CC on the Sparc assumes that doubles are 8 byte aligned. | |
44 | # Thanks to Hallvard B. Furuseth <h.b.furuseth@usit.uio.no> | |
73ad924b | 45 | set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @' -e 's@ sec @ @' -e 's@ crypt @ @'` |
bc1ad331 JH |
46 | libswanted="$*" |
47 | ||
b1db1e90 | 48 | # Look for architecture name. We want to suggest a useful default. |
a0d0e21e LW |
49 | case "$archname" in |
50 | '') | |
51 | if test -f /usr/bin/arch; then | |
52 | archname=`/usr/bin/arch` | |
53 | archname="${archname}-${osname}" | |
54 | elif test -f /usr/ucb/arch; then | |
55 | archname=`/usr/ucb/arch` | |
56 | archname="${archname}-${osname}" | |
57 | fi | |
58 | ;; | |
59 | esac | |
a0d0e21e | 60 | |
73ad924b LC |
61 | cat > UU/workshoplibpth.cbu << 'EOCBU' |
62 | # This script UU/workshoplibpth.cbu will get 'called-back' | |
63 | # by other CBUs this script creates. | |
da8f3004 | 64 | case "$workshoplibpth_done" in |
73ad924b LC |
65 | '') if test `uname -p` = "sparc"; then |
66 | case "$use64bitall" in | |
67 | "$define"|true|[yY]*) | |
68 | # add SPARC-specific 64 bit libraries | |
69 | loclibpth="$loclibpth /usr/lib/sparcv9" | |
70 | if test -n "$workshoplibs"; then | |
71 | loclibpth=`echo $loclibpth | sed -e "s% $workshoplibs%%" ` | |
72 | for lib in $workshoplibs; do | |
73 | # Logically, it should be sparcv9. | |
74 | # But the reality fights back, it's v9. | |
75 | loclibpth="$loclibpth $lib/sparcv9 $lib/v9" | |
76 | done | |
77 | fi | |
da8f3004 | 78 | ;; |
73ad924b | 79 | *) loclibpth="$loclibpth $workshoplibs" |
da8f3004 JH |
80 | ;; |
81 | esac | |
73ad924b LC |
82 | else |
83 | loclibpth="$loclibpth $workshoplibs" | |
84 | fi | |
da8f3004 JH |
85 | workshoplibpth_done="$define" |
86 | ;; | |
87 | esac | |
88 | EOCBU | |
89 | ||
da8f3004 JH |
90 | ###################################################### |
91 | # General sanity testing. See below for excerpts from the Solaris FAQ. | |
92 | # | |
93 | # From roehrich@ironwood-fddi.cray.com Wed Sep 27 12:51:46 1995 | |
94 | # Date: Thu, 7 Sep 1995 16:31:40 -0500 | |
95 | # From: Dean Roehrich <roehrich@ironwood-fddi.cray.com> | |
96 | # To: perl5-porters@africa.nicoh.com | |
97 | # Subject: Re: On perl5/solaris/gcc | |
98 | # | |
73ad924b | 99 | # Here's another draft of the perl5/solaris/gcc sanity-checker. |
da8f3004 | 100 | |
bd89102f AD |
101 | case `type ${cc:-cc}` in |
102 | */usr/ucb/cc*) cat <<END >&4 | |
8e07c86e | 103 | |
73ad924b | 104 | NOTE: Some people have reported problems with /usr/ucb/cc. |
bd89102f AD |
105 | If you have difficulties, please make sure the directory |
106 | containing your C compiler is before /usr/ucb in your PATH. | |
8e07c86e AD |
107 | |
108 | END | |
109 | ;; | |
110 | esac | |
111 | ||
112 | ||
113 | # Check that /dev/fd is mounted. If it is not mounted, let the | |
114 | # user know that suid scripts may not work. | |
115 | /usr/bin/df /dev/fd 2>&1 > /dev/null | |
116 | case $? in | |
117 | 0) ;; | |
118 | *) | |
68dc0745 | 119 | cat <<END >&4 |
8e07c86e AD |
120 | |
121 | NOTE: Your system does not have /dev/fd mounted. If you want to | |
122 | be able to use set-uid scripts you must ask your system administrator | |
123 | to mount /dev/fd. | |
124 | ||
125 | END | |
126 | ;; | |
127 | esac | |
128 | ||
129 | ||
130 | # See if libucb can be found in /usr/lib. If it is, warn the user | |
131 | # that this may cause problems while building Perl extensions. | |
132 | /usr/bin/ls /usr/lib/libucb* >/dev/null 2>&1 | |
133 | case $? in | |
134 | 0) | |
68dc0745 | 135 | cat <<END >&4 |
8e07c86e AD |
136 | |
137 | NOTE: libucb has been found in /usr/lib. libucb should reside in | |
138 | /usr/ucblib. You may have trouble while building Perl extensions. | |
139 | ||
a0d0e21e LW |
140 | END |
141 | ;; | |
142 | esac | |
40000a8c | 143 | |
bd89102f AD |
144 | # Use shell built-in 'type' command instead of /usr/bin/which to |
145 | # avoid possible csh start-up problems and also to use the same shell | |
146 | # we'll be using to Configure and make perl. | |
147 | # The path name is the last field in the output, but the type command | |
148 | # has an annoying array of possible outputs, e.g.: | |
149 | # make is hashed (/opt/gnu/bin/make) | |
150 | # cc is /usr/ucb/cc | |
151 | # foo not found | |
152 | # use a command like type make | awk '{print $NF}' | sed 's/[()]//g' | |
8e07c86e AD |
153 | |
154 | # See if make(1) is GNU make(1). | |
155 | # If it is, make sure the setgid bit is not set. | |
156 | make -v > make.vers 2>&1 | |
157 | if grep GNU make.vers > /dev/null 2>&1; then | |
bd89102f AD |
158 | tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'` |
159 | case "`/usr/bin/ls -lL $tmp`" in | |
8e07c86e | 160 | ??????s*) |
68dc0745 | 161 | cat <<END >&2 |
73ad924b | 162 | |
8e07c86e AD |
163 | NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id |
164 | bit set. You must either rearrange your PATH to put /usr/ccs/bin before the | |
165 | GNU utilities or you must ask your system administrator to disable the | |
166 | set-group-id bit on GNU make. | |
167 | ||
168 | END | |
169 | ;; | |
170 | esac | |
171 | fi | |
172 | rm -f make.vers | |
173 | ||
73ad924b LC |
174 | cat > UU/cc.cbu <<'EOCBU' |
175 | # This script UU/cc.cbu will get 'called-back' by Configure after it | |
176 | # has prompted the user for the C compiler to use. | |
177 | ||
8e07c86e AD |
178 | # If the C compiler is gcc: |
179 | # - check the fixed-includes | |
180 | # - check as(1) and ld(1), they should not be GNU | |
bd89102f | 181 | # (GNU as and ld 2.8.1 and later are reportedly ok, however.) |
8e07c86e | 182 | # If the C compiler is not gcc: |
73ad924b LC |
183 | # - Check if it is the Workshop/Forte compiler. |
184 | # If it is, prepare for 64 bit and long doubles. | |
8e07c86e | 185 | # - check as(1) and ld(1), they should not be GNU |
bd89102f | 186 | # (GNU as and ld 2.8.1 and later are reportedly ok, however.) |
8e07c86e AD |
187 | # |
188 | # Watch out in case they have not set $cc. | |
1acf53c5 | 189 | |
73ad924b | 190 | # Perl compiled with some combinations of GNU as and ld may not |
e766ed8d AD |
191 | # be able to perform dynamic loading of extensions. If you have a |
192 | # problem with dynamic loading, be sure that you are using the Solaris | |
193 | # /usr/ccs/bin/as and /usr/ccs/bin/ld. You can do that with | |
194 | # sh Configure -Dcc='gcc -B/usr/ccs/bin/' | |
73ad924b | 195 | # (note the trailing slash is required). |
e766ed8d AD |
196 | # Combinations that are known to work with the following hints: |
197 | # | |
198 | # gcc-2.7.2, GNU as 2.7, GNU ld 2.7 | |
199 | # egcs-1.0.3, GNU as 2.9.1 and GNU ld 2.9.1 | |
73ad924b | 200 | # --Andy Dougherty <doughera@lafayette.edu> |
e766ed8d AD |
201 | # Tue Apr 13 17:19:43 EDT 1999 |
202 | ||
1acf53c5 SZ |
203 | # Get gcc to share its secrets. |
204 | echo 'main() { return 0; }' > try.c | |
bd89102f AD |
205 | # Indent to avoid propagation to config.sh |
206 | verbose=`${cc:-cc} -v -o try try.c 2>&1` | |
1acf53c5 SZ |
207 | |
208 | if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then | |
8e07c86e AD |
209 | # |
210 | # Using gcc. | |
211 | # | |
8e07c86e | 212 | |
8e07c86e AD |
213 | tmp=`echo "$verbose" | grep '^Reading' | |
214 | awk '{print $NF}' | sed 's/specs$/include/'` | |
215 | ||
216 | # Determine if the fixed-includes look like they'll work. | |
cee5ebb5 | 217 | # Doesn't work anymore for gcc-2.7.2. |
8e07c86e | 218 | |
e766ed8d | 219 | # See if as(1) is GNU as(1). GNU as(1) might not work for this job. |
1acf53c5 SZ |
220 | if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then |
221 | : | |
222 | else | |
68dc0745 | 223 | cat <<END >&2 |
8e07c86e | 224 | |
e766ed8d AD |
225 | NOTE: You are using GNU as(1). GNU as(1) might not build Perl. If you |
226 | have trouble, you can use /usr/ccs/bin/as by including -B/usr/ccs/bin/ | |
bd89102f | 227 | in your ${cc:-cc} command. (Note that the trailing "/" is required.) |
8e07c86e AD |
228 | |
229 | END | |
e766ed8d AD |
230 | # Apparently not needed, at least for as 2.7 and later. |
231 | # cc="${cc:-cc} -B/usr/ccs/bin/" | |
1acf53c5 | 232 | fi |
8e07c86e | 233 | |
e766ed8d | 234 | # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job. |
bd89102f | 235 | # Recompute $verbose since we may have just changed $cc. |
d5fdf557 | 236 | verbose=`${cc:-cc} -v -o try try.c 2>&1 | grep ld 2>&1` |
e766ed8d | 237 | |
bd89102f | 238 | if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then |
e766ed8d AD |
239 | # Ok, gcc directly calls the Solaris /usr/ccs/bin/ld. |
240 | : | |
241 | elif echo "$verbose" | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then | |
242 | # Hmm. gcc doesn't call /usr/ccs/bin/ld directly, but it | |
243 | # does appear to be using it eventually. egcs-1.0.3's ld | |
244 | # wrapper does this. | |
245 | # All Solaris versions of ld I've seen contain the magic | |
246 | # string used in the grep. | |
1acf53c5 SZ |
247 | : |
248 | else | |
e766ed8d AD |
249 | # No evidence yet of /usr/ccs/bin/ld. Some versions |
250 | # of egcs's ld wrapper call /usr/ccs/bin/ld in turn but | |
251 | # apparently don't reveal that unless you pass in -V. | |
252 | # (This may all depend on local configurations too.) | |
d5fdf557 TS |
253 | |
254 | myld=`echo $verbose| grep ld | awk '/\/ld/ {print $1}'` | |
e766ed8d AD |
255 | # This assumes that gcc's output will not change, and that |
256 | # /full/path/to/ld will be the first word of the output. | |
257 | # Thus myld is something like opt/gnu/sparc-sun-solaris2.5/bin/ld | |
258 | ||
259 | if $myld -V 2>&1 | grep "ld: Software Generation Utilities" >/dev/null 2>&1; then | |
260 | # Ok, /usr/ccs/bin/ld eventually does get called. | |
261 | : | |
262 | else | |
263 | cat <<END >&2 | |
8e07c86e | 264 | |
e766ed8d AD |
265 | NOTE: You are using GNU ld(1). GNU ld(1) might not build Perl. If you |
266 | have trouble, you can use /usr/ccs/bin/ld by including -B/usr/ccs/bin/ | |
bd89102f | 267 | in your ${cc:-cc} command. (Note that the trailing "/" is required.) |
8e07c86e | 268 | |
e766ed8d AD |
269 | I will try to use GNU ld by passing in the -Wl,-E flag, but if that |
270 | doesn't work, you should use -B/usr/ccs/bin/ instead. | |
271 | ||
8e07c86e | 272 | END |
e766ed8d AD |
273 | ccdlflags="$ccdlflags -Wl,-E" |
274 | lddlflags="$lddlflags -W,l-E -G" | |
275 | fi | |
1acf53c5 | 276 | fi |
8e07c86e | 277 | |
1acf53c5 | 278 | else |
8e07c86e AD |
279 | # |
280 | # Not using gcc. | |
281 | # | |
8e07c86e | 282 | |
73ad924b LC |
283 | ccversion="`${cc:-cc} -V 2>&1|sed -n -e '1s/^cc: //p'`" |
284 | case "$ccversion" in | |
285 | *WorkShop*) ccname=workshop ;; | |
286 | *) ccversion='' ;; | |
287 | esac | |
288 | ||
289 | case "$ccname" in | |
290 | workshop) | |
291 | cat >try.c <<EOM | |
292 | #include <sunmath.h> | |
293 | int main() { return(0); } | |
294 | EOM | |
295 | workshoplibs=`cc -### try.c -lsunmath -o try 2>&1|sed -n '/ -Y /s%.* -Y "P,\(.*\)".*%\1%p'|tr ':' '\n'|grep '/SUNWspro/'` | |
296 | . ./workshoplibpth.cbu | |
297 | ;; | |
298 | esac | |
299 | ||
e766ed8d | 300 | # See if as(1) is GNU as(1). GNU might not work for this job. |
8e07c86e AD |
301 | case `as --version < /dev/null 2>&1` in |
302 | *GNU*) | |
68dc0745 | 303 | cat <<END >&2 |
8e07c86e | 304 | |
e766ed8d | 305 | NOTE: You are using GNU as(1). GNU as(1) might not build Perl. |
bd89102f AD |
306 | You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin |
307 | to the beginning of your PATH. | |
8e07c86e AD |
308 | |
309 | END | |
310 | ;; | |
311 | esac | |
312 | ||
e766ed8d | 313 | # See if ld(1) is GNU ld(1). GNU ld(1) might not work for this job. |
91d1e749 | 314 | # ld --version doesn't properly report itself as a GNU tool, |
315 | # as of ld version 2.6, so we need to be more strict. TWP 9/5/96 | |
316 | gnu_ld=false | |
8e07c86e | 317 | case `ld --version < /dev/null 2>&1` in |
91d1e749 | 318 | *GNU*|ld\ version\ 2*) |
319 | gnu_ld=true ;; | |
320 | *) ;; | |
321 | esac | |
322 | if $gnu_ld ; then : | |
323 | else | |
bd89102f AD |
324 | # Try to guess from path |
325 | case `type ld | awk '{print $NF}'` in | |
326 | *gnu*|*GNU*|*FSF*) | |
91d1e749 | 327 | gnu_ld=true ;; |
328 | esac | |
329 | fi | |
330 | if $gnu_ld ; then | |
68dc0745 | 331 | cat <<END >&2 |
8e07c86e | 332 | |
e766ed8d AD |
333 | NOTE: You are apparently using GNU ld(1). GNU ld(1) might not build Perl. |
334 | You should arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin | |
bd89102f | 335 | to the beginning of your PATH. |
8e07c86e AD |
336 | |
337 | END | |
91d1e749 | 338 | fi |
8e07c86e | 339 | |
1acf53c5 | 340 | fi |
8e07c86e AD |
341 | |
342 | # as --version or ld --version might dump core. | |
bd89102f | 343 | rm -f try try.c |
8e07c86e AD |
344 | rm -f core |
345 | ||
693762b4 | 346 | # XXX |
73ad924b | 347 | EOCBU |
693762b4 | 348 | |
de6124c8 | 349 | cat > UU/usethreads.cbu <<'EOCBU' |
73ad924b | 350 | # This script UU/usethreads.cbu will get 'called-back' by Configure |
104d25b7 | 351 | # after it has prompted the user for whether to use threads. |
104d25b7 JH |
352 | case "$usethreads" in |
353 | $define|true|[yY]*) | |
104d25b7 JH |
354 | ccflags="-D_REENTRANT $ccflags" |
355 | ||
73ad924b | 356 | # sched_yield is in -lposix4 up to Solaris 2.6, in -lrt starting with Solaris 2.7 |
7bd161a1 LC |
357 | case `uname -r` in |
358 | 5.[0-6] | 5.5.1) sched_yield_lib="posix4" ;; | |
359 | *) sched_yield_lib="rt"; | |
360 | esac | |
361 | set `echo X "$libswanted "| sed -e "s/ c / $sched_yield_lib pthread c /"` | |
104d25b7 JH |
362 | shift |
363 | libswanted="$*" | |
364 | ||
365 | # On Solaris 2.6 x86 there is a bug with sigsetjmp() and siglongjmp() | |
366 | # when linked with the threads library, such that whatever positive | |
367 | # value you pass to siglongjmp(), sigsetjmp() returns 1. | |
368 | # Thanks to Simon Parsons <S.Parsons@ftel.co.uk> for this report. | |
369 | # Sun BugID is 4117946, "sigsetjmp always returns 1 when called by | |
370 | # siglongjmp in a MT program". As of 19980622, there is no patch | |
371 | # available. | |
372 | cat >try.c <<'EOM' | |
373 | /* Test for sig(set|long)jmp bug. */ | |
374 | #include <setjmp.h> | |
73ad924b | 375 | |
104d25b7 JH |
376 | main() |
377 | { | |
378 | sigjmp_buf env; | |
379 | int ret; | |
73ad924b | 380 | |
104d25b7 JH |
381 | ret = sigsetjmp(env, 1); |
382 | if (ret) { return ret == 2; } | |
383 | siglongjmp(env, 2); | |
384 | } | |
385 | EOM | |
7bd161a1 | 386 | if test "`arch`" = i86pc -a `uname -r` = 5.6 && \ |
104d25b7 JH |
387 | ${cc:-cc} try.c -lpthread >/dev/null 2>&1 && ./a.out; then |
388 | d_sigsetjmp=$undef | |
389 | cat << 'EOM' >&2 | |
390 | ||
391 | You will see a *** WHOA THERE!!! *** message from Configure for | |
392 | d_sigsetjmp. Keep the recommended value. See hints/solaris_2.sh | |
393 | for more information. | |
394 | ||
395 | EOM | |
396 | fi | |
397 | ;; | |
123f9af1 | 398 | esac |
104d25b7 JH |
399 | EOCBU |
400 | ||
923fc586 | 401 | cat > UU/uselargefiles.cbu <<'EOCBU' |
73ad924b | 402 | # This script UU/uselargefiles.cbu will get 'called-back' by Configure |
5fce3f1f | 403 | # after it has prompted the user for whether to use large files. |
bd9b35c9 | 404 | case "$uselargefiles" in |
10cc9d2a | 405 | ''|$define|true|[yY]*) |
9422c00b JH |
406 | |
407 | # Keep these in the left margin. | |
45c9e83b JH |
408 | ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`" |
409 | ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`" | |
410 | libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`" | |
9422c00b | 411 | |
45c9e83b JH |
412 | ccflags="$ccflags $ccflags_uselargefiles" |
413 | ldflags="$ldflags $ldflags_uselargefiles" | |
414 | libswanted="$libswanted $libswanted_uselargefiles" | |
6f587e79 | 415 | ;; |
bd9b35c9 | 416 | esac |
5fce3f1f | 417 | EOCBU |
6b8eaf93 | 418 | |
2f4ff158 JH |
419 | # This is truly a mess. |
420 | case "$usemorebits" in | |
421 | "$define"|true|[yY]*) | |
73ad924b LC |
422 | use64bitint="$define" |
423 | uselongdouble="$define" | |
2f4ff158 JH |
424 | ;; |
425 | esac | |
426 | ||
73ad924b LC |
427 | if test `uname -p` = "sparc"; then |
428 | cat > UU/use64bitint.cbu <<'EOCBU' | |
429 | # This script UU/use64bitint.cbu will get 'called-back' by Configure | |
430 | # after it has prompted the user for whether to use 64 bit integers. | |
431 | case "$use64bitint" in | |
432 | "$define"|true|[yY]*) | |
433 | case "`uname -r`" in | |
434 | 5.[0-4]) | |
435 | cat >&4 <<EOM | |
436 | Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit integers. | |
437 | You should upgrade to at least Solaris 2.5. | |
438 | EOM | |
439 | exit 1 | |
440 | ;; | |
441 | esac | |
442 | ;; | |
443 | esac | |
444 | EOCBU | |
445 | ||
446 | cat > UU/use64bitall.cbu <<'EOCBU' | |
447 | # This script UU/use64bitall.cbu will get 'called-back' by Configure | |
c4eb8127 JH |
448 | # after it has prompted the user for whether to be maximally 64 bitty. |
449 | case "$use64bitall-$use64bitall_done" in | |
450 | "$define-"|true-|[yY]*-) | |
104d25b7 | 451 | case "`uname -r`" in |
73ad924b | 452 | 5.[0-6]) |
104d25b7 | 453 | cat >&4 <<EOM |
73ad924b LC |
454 | Solaris `uname -r|sed -e 's/^5\./2./'` does not support 64-bit pointers. |
455 | You should upgrade to at least Solaris 2.7. | |
104d25b7 JH |
456 | EOM |
457 | exit 1 | |
458 | ;; | |
459 | esac | |
282f2f4c JH |
460 | libc='/usr/lib/sparcv9/libc.so' |
461 | if test ! -f $libc; then | |
9b119d5a | 462 | cat >&4 <<EOM |
282f2f4c JH |
463 | |
464 | I do not see the 64-bit libc, $libc. | |
465 | Cannot continue, aborting. | |
466 | ||
467 | EOM | |
468 | exit 1 | |
e6f120fa | 469 | fi |
73ad924b | 470 | . ./workshoplibpth.cbu |
4c07fe1d JH |
471 | case "$cc -v 2>/dev/null" in |
472 | *gcc*) | |
9b119d5a | 473 | echo 'main() { return 0; }' > try.c |
9636b992 CT |
474 | case "`${cc:-cc} -mcpu=v9 -m64 -S try.c 2>&1 | grep 'm64 is not supported by this configuration'`" in |
475 | *"m64 is not supported"*) | |
9b119d5a RB |
476 | cat >&4 <<EOM |
477 | ||
e6f120fa JH |
478 | Full 64-bit build is not supported by this gcc configuration. |
479 | Check http://gcc.gnu.org/ for the latest news of availability | |
480 | of gcc for 64-bit Sparc. | |
481 | ||
9b119d5a RB |
482 | Cannot continue, aborting. |
483 | ||
484 | EOM | |
485 | exit 1 | |
9636b992 | 486 | ;; |
73ad924b | 487 | esac |
9b119d5a RB |
488 | ccflags="$ccflags -mcpu=v9 -m64" |
489 | if test X`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null` != X; then | |
490 | ccflags="$ccflags -Wa,`getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" | |
491 | fi | |
492 | # no changes to ld flags, as (according to man ld): | |
493 | # | |
494 | # There is no specific option that tells ld to link 64-bit | |
495 | # objects; the class of the first object that gets processed | |
496 | # by ld determines whether it is to perform a 32-bit or a | |
497 | # 64-bit link edit. | |
4c07fe1d JH |
498 | ;; |
499 | *) | |
0d926123 | 500 | ccflags="$ccflags `getconf XBS5_LP64_OFF64_CFLAGS 2>/dev/null`" |
923fc586 | 501 | ldflags="$ldflags `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`" |
0d926123 | 502 | lddlflags="$lddlflags -G `getconf XBS5_LP64_OFF64_LDFLAGS 2>/dev/null`" |
4c07fe1d | 503 | ;; |
73ad924b | 504 | esac |
b1b472cb | 505 | libscheck='case "`/usr/bin/file $xxx`" in |
7b65db70 JH |
506 | *64-bit*|*SPARCV9*) ;; |
507 | *) xxx=/no/64-bit$xxx ;; | |
508 | esac' | |
5ae8d7b4 | 509 | |
e9a51be3 | 510 | use64bitall_done=yes |
6f587e79 JH |
511 | ;; |
512 | esac | |
4c07fe1d | 513 | EOCBU |
73ad924b LC |
514 | |
515 | # Actually, we want to run this already now, if so requested, | |
516 | # because we need to fix up things right now. | |
517 | case "$use64bitall" in | |
518 | "$define"|true|[yY]*) | |
519 | # CBUs expect to be run in UU | |
520 | cd UU; . ./use64bitall.cbu; cd .. | |
631e9f25 | 521 | ;; |
73ad924b LC |
522 | esac |
523 | fi | |
b0ca24c6 | 524 | |
923fc586 | 525 | cat > UU/uselongdouble.cbu <<'EOCBU' |
73ad924b | 526 | # This script UU/uselongdouble.cbu will get 'called-back' by Configure |
923fc586 | 527 | # after it has prompted the user for whether to use long doubles. |
e9a51be3 JH |
528 | case "$uselongdouble" in |
529 | "$define"|true|[yY]*) | |
73ad924b LC |
530 | if test -f /opt/SUNWspro/lib/libsunmath.so; then |
531 | libs="$libs -lsunmath" | |
532 | ldflags="$ldflags -L/opt/SUNWspro/lib -R/opt/SUNWspro/lib" | |
533 | d_sqrtl=define | |
8364ae4d | 534 | else |
73ad924b LC |
535 | cat >&4 <<EOM |
536 | ||
537 | The Sun Workshop math library is not installed; therefore I do not | |
538 | know how to do long doubles, sorry. I'm disabling the use of long | |
539 | doubles. | |
540 | EOM | |
541 | uselongdouble="$undef" | |
8364ae4d | 542 | fi |
e9a51be3 JH |
543 | ;; |
544 | esac | |
73ad924b | 545 | EOCBU |
e9a51be3 | 546 | |
73ad924b | 547 | rm -f try.c try.o try a.out |