This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[patch] -Wall
[perl5.git] / hints / hpux.sh
1 #! /bin/sh
2
3 # hints/hpux.sh
4 # Perl Configure hints file for Hewlett-Packard's HP-UX 9.x and 10.x
5 # (Hopefully, 7.x through 11.x.)
6 #
7 # This file is based on hints/hpux_9.sh, Perl Configure hints file for
8 # Hewlett Packard HP-UX 9.x
9 #
10 # Use Configure -Dcc=gcc to use gcc.
11 #
12 # From: Jeff Okamoto <okamoto@corp.hp.com>
13 # and
14 # hints/hpux_10.sh, Perl Configure hints file for Hewlett Packard HP-UX 10.x
15 # From: Giles Lean <giles@nemeton.com.au>
16 # and
17 # Use #define CPU_* instead of comments for >= 10.x.
18 # Support PA1.2 under 10.x.
19 # Distinguish between PA2.0, PA2.1, etc.
20 # Distinguish between MC68020, MC68030, MC68040
21 # Don't assume every OS != 10 is < 10, (e.g., 11).
22 # From: Chuck Phillips <cdp@fc.hp.com>
23 # HP-UX 10 pthreads hints: Matthew T Harden <mthard@mthard1.monsanto.com>
24 # From: Dominic Dunlop <domo@computer.org>
25 # Abort and offer advice if bundled (non-ANSI) C compiler selected
26 # From: H.Merijn Brand <h.m.brand@hccnet.nl>
27 # ccversion detection
28 # perl/64/HP-UX wants libdb-3.0 to be shared ELF 64
29 # generic pthread support detection for PTH package
30
31
32 # This version: March 8, 2000
33 # Current maintainer: Jeff Okamoto <okamoto@corp.hp.com>
34
35 #--------------------------------------------------------------------
36 # Use Configure -Dcc=gcc to use gcc.
37 # Use Configure -Dprefix=/usr/local to install in /usr/local.
38 #
39 # You may have dynamic loading problems if the environment variable
40 # LDOPTS='-a archive'.  Under >= 10.x, you can instead LDOPTS='-a
41 # archive_shared' to prefer archive libraries without requiring them.
42 # Regardless of HPUX release, in the "libs" variable or the ext.libs
43 # file, you can always give explicit path names to archive libraries
44 # that may not exist on the target machine.  E.g., /usr/lib/libndbm.a
45 # instead of -lndbm.  See also note below on ndbm.
46 #
47 # ALSO, bear in mind that gdbm and Berkely DB contain incompatible
48 # replacements for ndbm (and dbm) routines.  If you want concurrent
49 # access to ndbm files, you need to make sure libndbm is linked in
50 # *before* gdbm and Berkely DB.  Lastly, remember to check the
51 # "ext.libs" file which is *probably* messing up the order.  Often,
52 # you can replace ext.libs with an empty file to fix the problem.
53 #
54 # If you get a message about "too much defining", as may happen
55 # in HPUX < 10, you might have to append a single entry to your
56 # ccflags: '-Wp,-H256000'
57 # NOTE: This is a single entry (-W takes the argument 'p,-H256000').
58 #--------------------------------------------------------------------
59
60 # Turn on the _HPUX_SOURCE flag to get many of the HP add-ons
61 # regardless of compiler.  For the HP ANSI C compiler, you may also
62 # want to include +e to enable "long long" and "long double".
63 #
64 # HP compiler flags to include (if at all) *both* as part of ccflags
65 # and cc itself so Configure finds (and builds) everything
66 # consistently:
67 #       -Aa -D_HPUX_SOURCE +e
68 #
69 # Lastly, you may want to include the "-z" HP linker flag so that
70 # reading from a NULL pointer causes a SEGV.
71 ccflags="$ccflags -D_HPUX_SOURCE"
72
73 # Check if you're using the bundled C compiler.  This compiler doesn't support
74 # ANSI C (the -Aa flag) and so is not suitable for perl 5.5 and later.
75 case "$cc" in
76 '') if cc $ccflags -Aa 2>&1 | $contains 'option' >/dev/null
77     then
78              cat <<'EOM' >&4
79
80 The bundled C compiler is not ANSI-compliant, and so cannot be used to
81 build perl.  Please see the file README.hpux for advice on alternative
82 compilers.
83
84 Cannot continue, aborting.
85 EOM
86         exit 1
87     else
88         ccflags="$ccflags -Aa"  # The add-on compiler supports ANSI C
89         # cppstdin and cpprun need the -Aa option if you use the unbundled 
90         # ANSI C compiler (*not* the bundled K&R compiler or gcc)
91         # [XXX this should be set automatically by Configure, but isn't yet.]
92         # [XXX This is reported not to work.  You may have to edit config.sh.
93         #  After running Configure, set cpprun and cppstdin in config.sh,
94         #  run "Configure -S" and then "make".]
95         cpprun="${cc:-cc} -E -Aa"
96         cppstdin="$cpprun"
97         cppminus='-'
98         cpplast='-'
99     fi
100     case "$optimize" in
101         # For HP's ANSI C compiler, up to "+O3" is safe for everything
102         # except shared libraries (PIC code).  Max safe for PIC is "+O2".
103         # Setting both causes innocuous warnings.
104         '')     optimize='-O'
105                 #optimize='+O3'
106                 #cccdlflags='+z +O2'
107                 ;;
108     esac
109     cc=cc
110     ;;
111 esac
112
113 cc=${cc:-cc}
114
115 case `$cc -v 2>&1`"" in
116 *gcc*) ccisgcc="$define" ;;
117 *) ccisgcc=''
118    ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
119    ;;
120 esac
121
122 # Determine the architecture type of this system.
123 # Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
124         xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
125         #xxOsRevMinor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f2`;
126 if [ "$xxOsRevMajor" -ge 10 ]
127 then
128         # This system is running >= 10.x
129
130         # Tested on 10.01 PA1.x and 10.20 PA[12].x.  Idea: Scan
131         # /usr/include/sys/unistd.h for matches with "#define CPU_* `getconf
132         # CPU_VERSION`" to determine CPU type.  Note the part following
133         # "CPU_" is used, *NOT* the comment.
134         #
135         # ASSUMPTIONS: Numbers will continue to be defined in hex -- and in
136         # /usr/include/sys/unistd.h -- and the CPU_* #defines will be kept
137         # up to date with new CPU/OS releases.
138         xxcpu=`getconf CPU_VERSION`; # Get the number.
139         xxcpu=`printf '0x%x' $xxcpu`; # convert to hex
140         archname=`sed -n -e "s/^#[ \t]*define[ \t]*CPU_//p" /usr/include/sys/unistd.h |
141             sed -n -e "s/[ \t]*$xxcpu[ \t].*//p" |
142             sed -e s/_RISC/-RISC/ -e s/HP_// -e s/_/./`;
143 else
144         # This system is running <= 9.x
145         # Tested on 9.0[57] PA and [78].0 MC680[23]0.  Idea: After removing
146         # MC6888[12] from context string, use first CPU identifier.
147         #
148         # ASSUMPTION: Only CPU identifiers contain no lowercase letters.
149         archname=`getcontext | tr ' ' '\012' | grep -v '[a-z]' | grep -v MC688 |
150             sed -e 's/HP-//' -e 1q`;
151         selecttype='int *'
152 fi
153
154 # Do this right now instead of the delayed callback unit approach.
155 case "$use64bitall" in
156 $define|true|[yY]*) use64bitint="$define" ;;
157 esac
158 case "$use64bitint" in
159 $define|true|[yY]*)
160     if [ "$xxOsRevMajor" -lt 11 ]; then
161                 cat <<EOM >&4
162
163 64-bit compilation is not supported on HP-UX $xxOsRevMajor.
164 You need at least HP-UX 11.0.
165 Cannot continue, aborting.
166
167 EOM
168                 exit 1
169     fi
170
171     # Without the 64-bit libc we cannot do much.
172     libc='/lib/pa20_64/libc.sl'
173     if [ ! -f "$libc" ]; then
174                 cat <<EOM >&4
175
176 *** You do not seem to have the 64-bit libraries in /lib/pa20_64.
177 *** Most importantly, I cannot find the $libc.
178 *** Cannot continue, aborting.
179
180 EOM
181                 exit 1
182     fi
183
184     ccflags="$ccflags +DD64"
185     ldflags="$ldflags +DD64"
186     test -d /lib/pa20_64 && loclibpth="$loclibpth /lib/pa20_64"
187     libswanted="$libswanted pthread"
188     libscheck='case "`/usr/bin/file $xxx`" in
189 *LP64*|*PA-RISC2.0*) ;;
190 *) xxx=/no/64-bit$xxx ;;
191 esac'
192     if test -n "$ccisgcc" -o -n "$gccversion"; then
193         ld="$cc"
194     else        
195         ld=/usr/bin/ld
196     fi
197     ar=/usr/bin/ar
198     full_ar=$ar
199
200     if test -z "$ccisgcc" -a -z "$gccversion"; then
201        # The strict ANSI mode (-Aa) doesn't like the LL suffixes.
202        ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
203        case "$ccflags" in
204        *-Ae*) ;;
205        *) ccflags="$ccflags -Ae" ;;
206        esac
207     fi
208
209     set `echo " $libswanted " | sed -e 's@ dl @ @'`
210     libswanted="$*"
211
212     ;;
213 esac
214
215 case "$ccisgcc" in
216 # Even if you use gcc, prefer the HP math library over the GNU one.
217 "$define") test -d /lib/pa1.1 && ccflags="$ccflags -L/lib/pa1.1" ;;
218 esac
219     
220 case "$ccisgcc" in
221 "$define") ;;
222 *)  case "`getconf KERNEL_BITS 2>/dev/null`" in
223     *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
224     esac
225     ;;
226 esac
227
228 # Remove bad libraries that will cause problems
229 # (This doesn't remove libraries that don't actually exist)
230 # -lld is unneeded (and I can't figure out what it's used for anyway)
231 # -ldbm is obsolete and should not be used
232 # -lBSD contains BSD-style duplicates of SVR4 routines that cause confusion
233 # -lPW is obsolete and should not be used
234 # The libraries crypt, malloc, ndir, and net are empty.
235 # Although -lndbm should be included, it will make perl blow up if you should
236 # copy the binary to a system without libndbm.sl.  See ccdlflags below.
237 set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ dbm @ @' -e 's@ BSD @ @' -e 's@ PW @ @'`
238 libswanted="$*"
239
240 # By setting the deferred flag below, this means that if you run perl
241 # on a system that does not have the required shared library that you
242 # linked it with, it will die when you try to access a symbol in the
243 # (missing) shared library.  If you would rather know at perl startup
244 # time that you are missing an important shared library, switch the
245 # comments so that immediate, rather than deferred loading is
246 # performed.  Even with immediate loading, you can postpone errors for
247 # undefined (or multiply defined) routines until actual access by
248 # adding the "nonfatal" option.
249 # ccdlflags="-Wl,-E -Wl,-B,immediate $ccdlflags"
250 # ccdlflags="-Wl,-E -Wl,-B,immediate,-B,nonfatal $ccdlflags"
251 ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
252
253 case "$usemymalloc" in
254 '') usemymalloc='y' ;;
255 esac
256
257 alignbytes=8
258 # For native nm, you need "-p" to produce BSD format output.
259 nm_opt='-p'
260
261 # When HP-UX runs a script with "#!", it sets argv[0] to the script name.
262 toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
263
264 # If your compile complains about FLT_MIN, uncomment the next line
265 # POSIX_cflags='ccflags="$ccflags -DFLT_MIN=1.17549435E-38"'
266
267 # Comment this out if you don't want to follow the SVR4 filesystem layout
268 # that HP-UX 10.0 uses
269 case "$prefix" in
270 '') prefix='/opt/perl5' ;;
271 esac
272
273 # HP-UX can't do setuid emulation offered by Configure
274 case "$d_dosuid" in
275 '') d_dosuid="$undef" ;;
276 esac
277
278 # HP-UX 11 groks also LD_LIBRARY_PATH but SHLIB_PATH
279 # is recommended for compatibility.
280 case "$ldlibpthname" in
281 '') ldlibpthname=SHLIB_PATH ;;
282 esac
283
284 # HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
285 case "$ccisgcc" in
286 "$define") ccflags="$ccflags -DUINT32_MAX_BROKEN" ;;
287 esac
288
289 cat > UU/cc.cbu <<'EOSH'
290 # XXX This script UU/cc.cbu will get 'called-back' by Configure after it
291 # XXX has prompted the user for the C compiler to use.
292 # Get gcc to share its secrets.
293 echo 'main() { return 0; }' > try.c
294         # Indent to avoid propagation to config.sh
295         verbose=`${cc:-cc} -v -o try try.c 2>&1`
296 if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
297         # Using gcc.
298         : nothing to see here, move on.
299 else
300         # Using cc.
301         ar=${ar:-ar}
302         case "`$ar -V 2>&1`" in
303         *GNU*)
304             if test -x /usr/bin/ar; then
305                 cat <<END >&2
306
307 *** You are using HP cc(1) but GNU ar(1).  This might lead into trouble
308 *** later on, I'm switching to HP ar to play safe.
309
310 END
311                 ar=/usr/bin/ar
312             fi
313         ;;
314     esac
315 fi
316
317 EOSH
318
319 # Date: Fri, 6 Sep 96 23:15:31 CDT
320 # From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
321 # I looked through the gcc.info and found this:
322 #   * GNU CC compiled code sometimes emits warnings from the HP-UX
323 #     assembler of the form:
324 #          (warning) Use of GR3 when frame >= 8192 may cause conflict.
325 #     These warnings are harmless and can be safely ignored.
326
327 cat > UU/usethreads.cbu <<'EOCBU'
328 # This script UU/usethreads.cbu will get 'called-back' by Configure 
329 # after it has prompted the user for whether to use threads.
330 case "$usethreads" in
331 $define|true|[yY]*)
332         if [ "$xxOsRevMajor" -lt 10 ]; then
333             cat <<EOM >&4
334 HP-UX $xxOsRevMajor cannot support POSIX threads.
335 Consider upgrading to at least HP-UX 11.
336 Cannot continue, aborting.
337 EOM
338             exit 1
339         fi
340         case "$xxOsRevMajor" in
341         10)
342             # Under 10.X, a threaded perl can be built
343             if [ -f /usr/include/pthread.h ]; then
344                 if [ -f /usr/lib/libcma.sl ]; then
345                     # DCE (from Core OS CD) is installed
346
347                     # It needs # libcma and OLD_PTHREADS_API. Also <pthread.h>
348                     # needs to be #included before any other includes
349                     # (in perl.h)
350
351                     # HP-UX 10.X uses the old pthreads API
352                     d_oldpthreads="$define"
353
354                     # include libcma before all the others
355                     libswanted="cma $libswanted"
356
357                     # tell perl.h to include <pthread.h> before other include files
358                     ccflags="$ccflags -DPTHREAD_H_FIRST"
359
360                     # CMA redefines select to cma_select, and cma_select expects int *
361                     # instead of fd_set * (just like 9.X)
362                     selecttype='int *'
363
364                 elif [ -f /usr/lib/libpthread.sl ]; then
365                     # PTH package is installed
366                     libswanted="pthread $libswanted"
367                 else
368                     libswanted="no_threads_available"
369                     fi
370             else
371                 libswanted="no_threads_available"
372                 fi
373
374             if [ $libswanted = "no_threads_available" ]; then
375                 cat <<EOM >&4
376 In HP-UX 10.X for POSIX threads you need both of the files
377 /usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl.
378 Either you must upgrade to HP-UX 11 or install a posix thread library:
379  DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941) or
380  PTH package from i.e. http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html
381 Cannot continue, aborting.
382 EOM
383                 exit 1
384                 fi
385
386             ;;
387         11 | 12) # 12 may want upping the _POSIX_C_SOURCE datestamp...
388             ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags"
389             set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
390             shift
391             libswanted="$*"
392             ;;
393         esac
394         usemymalloc='n'
395         ;;
396 esac
397 EOCBU
398
399 case "$uselargefiles-$ccisgcc" in
400 "$define-$define"|'-define') 
401     cat <<EOM >&4
402
403 *** I'm ignoring large files for this build because
404 *** I don't know how to do use large files in HP-UX using gcc.
405
406 EOM
407     uselargefiles="$undef"
408     ;;
409 esac
410
411 cat > UU/uselargefiles.cbu <<'EOCBU'
412 # This script UU/uselargefiles.cbu will get 'called-back' by Configure 
413 # after it has prompted the user for whether to use large files.
414 case "$uselargefiles" in
415 ''|$define|true|[yY]*)
416         # there are largefile flags available via getconf(1)
417         # but we cheat for now.  (Keep that in the left margin.)
418 ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
419
420         ccflags="$ccflags $ccflags_uselargefiles"
421
422         if test -z "$ccisgcc" -a -z "$gccversion"; then
423            # The strict ANSI mode (-Aa) doesn't like large files.
424            ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
425            case "$ccflags" in
426            *-Ae*) ;;
427            *) ccflags="$ccflags -Ae" ;;
428            esac
429         fi
430
431         ;;
432 esac
433 EOCBU
434
435 # keep that leading tab.
436         ccisgcc=''
437