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