9a1ccb9027f28cdd83d461bddd79c36668a78e43
[p5sagit/p5-mst-13.2.git] / hints / solaris_2.sh
1 # hints/solaris_2.sh
2 # Last modified:  Wed May 27 13:04:45 EDT 1998
3 # Andy Dougherty  <doughera@lafcol.lafayette.edu>
4 # Based on input from lots of folks, especially
5 # Dean Roehrich <roehrich@ironwood-fddi.cray.com>
6
7 # If perl fails tests that involve dynamic loading of extensions, and
8 # you are using gcc, be sure that you are NOT using GNU as and ld.  One
9 # way to do that is to invoke Configure with
10
11 #     sh Configure -Dcc='gcc -B/usr/ccs/bin/'
12
13  
14 # See man vfork.
15 usevfork=false
16
17 d_suidsafe=define
18
19 # Avoid all libraries in /usr/ucblib.
20 set `echo $glibpth | sed -e 's@/usr/ucblib@@'`
21 glibpth="$*"
22
23 # Remove bad libraries.  -lucb contains incompatible routines.
24 # -lld doesn't do anything useful.
25 # -lmalloc can cause a problem with GNU CC & Solaris.  Specifically,
26 # libmalloc.a may allocate memory that is only 4 byte aligned, but
27 # GNU CC on the Sparc assumes that doubles are 8 byte aligned.
28 # Thanks to  Hallvard B. Furuseth <h.b.furuseth@usit.uio.no>
29 set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ malloc @ @' -e 's@ ucb @ @'`
30 libswanted="$*"
31
32 # Look for architecture name.  We want to suggest a useful default.
33 case "$archname" in
34 '')
35     if test -f /usr/bin/arch; then
36         archname=`/usr/bin/arch`
37         archname="${archname}-${osname}"
38     elif test -f /usr/ucb/arch; then
39         archname=`/usr/ucb/arch`
40         archname="${archname}-${osname}"
41     fi
42     ;;
43 esac
44
45 ######################################################
46 # General sanity testing.  See below for excerpts from the Solaris FAQ.
47
48 # From roehrich@ironwood-fddi.cray.com Wed Sep 27 12:51:46 1995
49 # Date: Thu, 7 Sep 1995 16:31:40 -0500
50 # From: Dean Roehrich <roehrich@ironwood-fddi.cray.com>
51 # To: perl5-porters@africa.nicoh.com
52 # Subject: Re: On perl5/solaris/gcc
53
54 # Here's another draft of the perl5/solaris/gcc sanity-checker. 
55
56 case `type ${cc:-cc}` in
57 */usr/ucb/cc*) cat <<END >&4
58
59 NOTE:  Some people have reported problems with /usr/ucb/cc.  
60 If you have difficulties, please make sure the directory
61 containing your C compiler is before /usr/ucb in your PATH.
62
63 END
64 ;;
65 esac
66
67
68 # Check that /dev/fd is mounted.  If it is not mounted, let the
69 # user know that suid scripts may not work.
70 /usr/bin/df /dev/fd 2>&1 > /dev/null
71 case $? in
72 0) ;;
73 *)
74         cat <<END >&4
75
76 NOTE: Your system does not have /dev/fd mounted.  If you want to
77 be able to use set-uid scripts you must ask your system administrator
78 to mount /dev/fd.
79
80 END
81         ;;
82 esac
83
84
85 # See if libucb can be found in /usr/lib.  If it is, warn the user
86 # that this may cause problems while building Perl extensions.
87 /usr/bin/ls /usr/lib/libucb* >/dev/null 2>&1
88 case $? in
89 0)
90         cat <<END >&4
91
92 NOTE: libucb has been found in /usr/lib.  libucb should reside in
93 /usr/ucblib.  You may have trouble while building Perl extensions.
94
95 END
96 ;;
97 esac
98
99 # Use shell built-in 'type' command instead of /usr/bin/which to
100 # avoid possible csh start-up problems and also to use the same shell
101 # we'll be using to Configure and make perl.
102 # The path name is the last field in the output, but the type command
103 # has an annoying array of possible outputs, e.g.:
104 #       make is hashed (/opt/gnu/bin/make)
105 #       cc is /usr/ucb/cc
106 #       foo not found
107 # use a command like type make | awk '{print $NF}' | sed 's/[()]//g'
108
109 # See if make(1) is GNU make(1).
110 # If it is, make sure the setgid bit is not set.
111 make -v > make.vers 2>&1
112 if grep GNU make.vers > /dev/null 2>&1; then
113     tmp=`type make | awk '{print $NF}' | sed 's/[()]//g'`
114     case "`/usr/bin/ls -lL $tmp`" in
115     ??????s*)
116             cat <<END >&2
117         
118 NOTE: Your PATH points to GNU make, and your GNU make has the set-group-id
119 bit set.  You must either rearrange your PATH to put /usr/ccs/bin before the
120 GNU utilities or you must ask your system administrator to disable the
121 set-group-id bit on GNU make.
122
123 END
124             ;;
125     esac
126 fi
127 rm -f make.vers
128
129 # XXX EXPERIMENTAL  A.D.  2/27/1998
130 # XXX This script UU/cc.cbu will get 'called-back' by Configure after it
131 # XXX has prompted the user for the C compiler to use.
132 cat > UU/cc.cbu <<'EOSH'
133 # If the C compiler is gcc:
134 #   - check the fixed-includes
135 #   - check as(1) and ld(1), they should not be GNU
136 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
137 # If the C compiler is not gcc:
138 #   - check as(1) and ld(1), they should not be GNU
139 #       (GNU as and ld 2.8.1 and later are reportedly ok, however.)
140 #
141 # Watch out in case they have not set $cc.
142
143 # Get gcc to share its secrets.
144 echo 'main() { return 0; }' > try.c
145         # Indent to avoid propagation to config.sh
146         verbose=`${cc:-cc} -v -o try try.c 2>&1`
147
148 if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
149         #
150         # Using gcc.
151         #
152         #echo Using gcc
153
154         tmp=`echo "$verbose" | grep '^Reading' |
155                 awk '{print $NF}'  | sed 's/specs$/include/'`
156
157         # Determine if the fixed-includes look like they'll work.
158         # Doesn't work anymore for gcc-2.7.2.
159
160         # See if as(1) is GNU as(1).  GNU as(1) won't work for this job.
161         if echo "$verbose" | grep ' /usr/ccs/bin/as ' >/dev/null 2>&1; then
162             :
163         else
164             cat <<END >&2
165
166 NOTE: You are using GNU as(1).  GNU as(1) will not build Perl.
167 I'm arranging to use /usr/ccs/bin/as by including -B/usr/ccs/bin/
168 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
169
170 END
171             cc="${cc:-cc} -B/usr/ccs/bin/"
172         fi
173
174         # See if ld(1) is GNU ld(1).  GNU ld(1) won't work for this job.
175         # Recompute $verbose since we may have just changed $cc.
176         verbose=`${cc:-cc} -v -o try try.c 2>&1`
177         if echo "$verbose" | grep ' /usr/ccs/bin/ld ' >/dev/null 2>&1; then
178             :
179         else
180             cat <<END >&2
181
182 NOTE: You are using GNU ld(1).  GNU ld(1) will not build Perl.
183 I'm arranging to use /usr/ccs/bin/ld by including -B/usr/ccs/bin/
184 in your ${cc:-cc} command.  (Note that the trailing "/" is required.)
185
186 END
187             cc="${cc:-cc} -B/usr/ccs/bin/"
188         fi
189
190 else
191         #
192         # Not using gcc.
193         #
194         #echo Not using gcc
195
196         # See if as(1) is GNU as(1).  GNU as(1) won't work for this job.
197         case `as --version < /dev/null 2>&1` in
198         *GNU*)
199                 cat <<END >&2
200
201 NOTE: You are using GNU as(1).  GNU as(1) will not build Perl.
202 You must arrange to use /usr/ccs/bin/as, perhaps by adding /usr/ccs/bin
203 to the beginning of your PATH.
204
205 END
206                 ;;
207         esac
208
209         # See if ld(1) is GNU ld(1).  GNU ld(1) won't work for this job.
210         # ld --version doesn't properly report itself as a GNU tool,
211         # as of ld version 2.6, so we need to be more strict. TWP 9/5/96
212         gnu_ld=false
213         case `ld --version < /dev/null 2>&1` in
214         *GNU*|ld\ version\ 2*)
215                 gnu_ld=true ;;
216         *) ;;
217         esac
218         if $gnu_ld ; then :
219         else
220                 # Try to guess from path
221                 case `type ld | awk '{print $NF}'` in
222                 *gnu*|*GNU*|*FSF*)
223                         gnu_ld=true ;;
224                 esac
225         fi
226         if $gnu_ld ; then
227                 cat <<END >&2
228
229 NOTE: You are apparently using GNU ld(1).  GNU ld(1) will not build Perl.
230 You must arrange to use /usr/ccs/bin/ld, perhaps by adding /usr/ccs/bin
231 to the beginning of your PATH.
232
233 END
234         fi
235
236 fi
237
238 # as --version or ld --version might dump core.
239 rm -f try try.c
240 rm -f core
241
242 # XXX
243 EOSH
244
245 if [ "X$usethreads" = "X$define" ]; then
246     ccflags="-D_REENTRANT $ccflags"
247     # -lpthread needs to come before -lc but after other libraries such
248     # as -lgdbm and such like. We assume here that -lc is present in
249     # libswanted. If that fails to be true in future, then this can be
250     # changed to add pthread to the very end of libswanted.
251     # sched_yield is in -lposix4
252     set `echo X "$libswanted "| sed -e 's/ c / posix4 pthread c /'`
253     shift
254     libswanted="$*"
255
256     # On Solaris 2.6 x86 there is a bug with sigsetjmp() and siglongjmp()
257     # when linked with the threads library, such that whatever positive value
258     # you pass to siglongjmp(), sigsetjmp() returns 1.
259     # Thanks to Simon Parsons <S.Parsons@ftel.co.uk> for this report.
260     if test "`arch`" = i86pc -a "$osvers" = 2.6; then
261         d_sigaction=$undef
262         cat << 'EOM' >&2
263
264 You will see a *** WHOA THERE!!! ***  message from Configure for
265 d_sigaction.  Keep the recommended value.  See hints/solaris_2.sh
266 for more information.
267
268 EOM
269     fi
270 fi
271
272 # This is just a trick to include some useful notes.
273 cat > /dev/null <<'End_of_Solaris_Notes'
274
275 Here are some notes kindly contributed by Dean Roehrich.
276
277 -----
278 Generic notes about building Perl5 on Solaris:
279 - Use /usr/ccs/bin/make.
280 - If you use GNU make, remove its setgid bit.
281 - Remove all instances of *ucb* from your path.
282 - Make sure libucb is not in /usr/lib (it should be in /usr/ucblib).
283 - Do not use GNU as or GNU ld, or any of GNU binutils or GNU libc.
284 - Do not use /usr/ucb/cc.
285 - Do not change Configure's default answers, except for the path names.
286 - Do not use -lmalloc.
287 - Do not build on SunOS 4 and expect it to work properly on SunOS 5.
288 - /dev/fd must be mounted if you want set-uid scripts to work.
289
290
291 Here are the gcc-related questions and answers from the Solaris 2 FAQ.  Note
292 the themes:
293         - run fixincludes
294         - run fixincludes correctly
295         - don't use GNU as or GNU ld
296
297 Question 5.7 covers the __builtin_va_alist problem people are always seeing.
298 Question 6.1.3 covers the GNU as and GNU ld issues which are always biting
299 people.
300 Question 6.9 is for those who are still trying to compile Perl4.
301
302 The latest Solaris 2 FAQ can be found in the following locations:
303         rtfm.mit.edu:/pub/usenet-by-group/comp.sys.sun.admin
304         ftp.fwi.uva.nl:/pub/solaris
305
306 Perl5 comes with a script in the top-level directory called "myconfig" which
307 will print a summary of the configuration in your config.sh.  My summary for
308 Solaris 2.4 and gcc 2.6.3 follows.  I have also built with gcc 2.7.0 and the
309 results are identical.  This configuration was generated with Configure's -d
310 option (take all defaults, don't bother prompting me).  All tests pass for
311 Perl5.001, patch.1m.
312
313 Summary of my perl5 (patchlevel 1) configuration:
314   Platform:
315     osname=solaris, osver=2.4, archname=sun4-solaris
316     uname='sunos poplar 5.4 generic_101945-27 sun4d sparc '
317     hint=recommended
318   Compiler:
319     cc='gcc', optimize='-O', ld='gcc'
320     cppflags=''
321     ccflags =''
322     ldflags =''
323     stdchar='unsigned char', d_stdstdio=define, usevfork=false
324     voidflags=15, castflags=0, d_casti32=define, d_castneg=define
325     intsize=4, alignbytes=8, usemymalloc=y, randbits=15
326   Libraries:
327     so=so
328     libpth=/lib /usr/lib /usr/ccs/lib /usr/local/lib
329     libs=-lsocket -lnsl -ldl -lm -lc -lcrypt
330     libc=/usr/lib/libc.so
331   Dynamic Linking:
332     dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef
333     cccdlflags='-fpic', ccdlflags=' ', lddlflags='-G'
334
335
336 Dean
337 roehrich@cray.com
338 9/7/95
339
340 -----------
341
342 From: Casper.Dik@Holland.Sun.COM (Casper H.S. Dik - Network Security Engineer)
343 Subject: Solaris 2 Frequently Asked Questions (FAQ) 1.48
344 Date: 25 Jul 1995 12:20:18 GMT
345
346 5.7) Why do I get __builtin_va_alist or __builtin_va_arg_incr undefined?
347
348     You're using gcc without properly installing the gcc fixed
349     include files.  Or you ran fixincludes after installing gcc
350     w/o moving the gcc supplied varargs.h and stdarg.h files
351     out of the way and moving them back again later.  This often
352     happens when people install gcc from a binary distribution.
353     If there's a tmp directory in gcc's include directory, fixincludes
354     didn't complete.  You should have run "just-fixinc" instead.
355
356     Another possible cause is using ``gcc -I/usr/include.''
357
358 6.1) Where is the C compiler or where can I get one?
359
360     [...]
361
362     3) Gcc.
363
364     Gcc is available from the GNU archives in source and binary
365     form.  Look in a directory called sparc-sun-solaris2 for
366     binaries.  You need gcc 2.3.3 or later.  You should not use
367     GNU as or GNU ld.  Make sure you run just-fixinc if you use
368     a binary distribution.  Better is to get a binary version and
369     use that to bootstrap gcc from source.
370
371     [...]
372
373     When you install gcc, don't make the mistake of installing
374     GNU binutils or GNU libc, they are not as capable as their
375     counterparts you get with Solaris 2.x.
376
377 6.9) I can't get perl 4.036 to compile or run.
378
379     Run Configure, and use the solaris_2_0 hints, *don't* use
380     the solaris_2_1 hints and don't use the config.sh you may
381     already have.  First you must make sure Configure and make
382     don't find /usr/ucb/cc.  (It must use gcc or the native C
383     compiler: /opt/SUNWspro/bin/cc)
384
385     Some questions need a special answer.
386
387     Are your system (especially dbm) libraries compiled with gcc? [y] y
388
389     yes: gcc 2.3.3 or later uses the standard calling
390     conventions, same as Sun's C.
391
392     Any additional cc flags? [ -traditional -Dvolatile=__volatile__
393     -I/usr/ucbinclude] -traditional -Dvolatile=__volatile__
394     Remove /usr/ucbinclude.
395
396     Any additional libraries? [-lsocket -lnsl -ldbm -lmalloc -lm
397     -lucb] -lsocket -lnsl  -lm
398
399     Don't include -ldbm, -lmalloc and -lucb.
400
401     Perl 5 compiled out of the box.
402
403 End_of_Solaris_Notes
404