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
CommitLineData
a28b458a
CP
1#! /bin/sh
2
8e07c86e 3# hints/hpux.sh
90248788 4# Perl Configure hints file for Hewlett-Packard's HP-UX 9.x and 10.x
a28b458a
CP
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#
8e07c86e 10# Use Configure -Dcc=gcc to use gcc.
a28b458a 11#
8ebc5c01 12# From: Jeff Okamoto <okamoto@corp.hp.com>
8e07c86e 13# and
023707f0 14# hints/hpux_10.sh, Perl Configure hints file for Hewlett Packard HP-UX 10.x
8e07c86e 15# From: Giles Lean <giles@nemeton.com.au>
a28b458a
CP
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>
5ff3f7a4 23# HP-UX 10 pthreads hints: Matthew T Harden <mthard@mthard1.monsanto.com>
f1bed316
GS
24# From: Dominic Dunlop <domo@computer.org>
25# Abort and offer advice if bundled (non-ANSI) C compiler selected
c7d9b096
JH
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
023707f0 31
f1bed316 32# This version: March 8, 2000
8ebc5c01 33# Current maintainer: Jeff Okamoto <okamoto@corp.hp.com>
8e07c86e 34
68dc0745 35#--------------------------------------------------------------------
8e07c86e
AD
36# Use Configure -Dcc=gcc to use gcc.
37# Use Configure -Dprefix=/usr/local to install in /usr/local.
68dc0745 38#
a28b458a
CP
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.
68dc0745 53#
491527d0
GS
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').
68dc0745 58#--------------------------------------------------------------------
4633a7c4 59
8e07c86e 60# Turn on the _HPUX_SOURCE flag to get many of the HP add-ons
a28b458a
CP
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.
d5374cbf 71ccflags="$ccflags -D_HPUX_SOURCE"
023707f0 72
8e07c86e 73# Check if you're using the bundled C compiler. This compiler doesn't support
f1bed316 74# ANSI C (the -Aa flag) and so is not suitable for perl 5.5 and later.
8e07c86e 75case "$cc" in
a5f75d66 76'') if cc $ccflags -Aa 2>&1 | $contains 'option' >/dev/null
8e07c86e 77 then
68dc0745 78 cat <<'EOM' >&4
8e07c86e 79
f1bed316
GS
80The bundled C compiler is not ANSI-compliant, and so cannot be used to
81build perl. Please see the file README.hpux for advice on alternative
82compilers.
8e07c86e 83
f1bed316 84Cannot continue, aborting.
8e07c86e 85EOM
f1bed316 86 exit 1
8e07c86e
AD
87 else
88 ccflags="$ccflags -Aa" # The add-on compiler supports ANSI C
959c26a4
JO
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='-'
8e07c86e 99 fi
24ef6058
GS
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
6cc5f3e7 109 cc=cc
8e07c86e
AD
110 ;;
111esac
112
5e4c82f0
JH
113cc=${cc:-cc}
114
b36fec95
JH
115case `$cc -v 2>&1`"" in
116*gcc*) ccisgcc="$define" ;;
9a7d309c 117*) ccisgcc=''
ba6d005f 118 ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
9a7d309c 119 ;;
b36fec95
JH
120esac
121
4633a7c4 122# Determine the architecture type of this system.
fa89f053 123# Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
a28b458a
CP
124 xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
125 #xxOsRevMinor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f2`;
126if [ "$xxOsRevMajor" -ge 10 ]
4633a7c4 127then
a28b458a
CP
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/_/./`;
4633a7c4 143else
a28b458a
CP
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`;
90248788 151 selecttype='int *'
4633a7c4
LW
152fi
153
140a4568 154# Do this right now instead of the delayed callback unit approach.
ec7b9793
JH
155case "$use64bitall" in
156$define|true|[yY]*) use64bitint="$define" ;;
157esac
10cc9d2a 158case "$use64bitint" in
bf0c440f
JH
159$define|true|[yY]*)
160 if [ "$xxOsRevMajor" -lt 11 ]; then
161 cat <<EOM >&4
162
16364-bit compilation is not supported on HP-UX $xxOsRevMajor.
164You need at least HP-UX 11.0.
165Cannot continue, aborting.
166
167EOM
168 exit 1
169 fi
170
171 # Without the 64-bit libc we cannot do much.
ec7b9793
JH
172 libc='/lib/pa20_64/libc.sl'
173 if [ ! -f "$libc" ]; then
bf0c440f
JH
174 cat <<EOM >&4
175
ec7b9793
JH
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.
bf0c440f
JH
179
180EOM
181 exit 1
182 fi
183
184 ccflags="$ccflags +DD64"
185 ldflags="$ldflags +DD64"
09ea5ba9 186 test -d /lib/pa20_64 && loclibpth="$loclibpth /lib/pa20_64"
6aedb45f 187 libswanted="$libswanted pthread"
b1b472cb 188 libscheck='case "`/usr/bin/file $xxx`" in
bf0c440f
JH
189*LP64*|*PA-RISC2.0*) ;;
190*) xxx=/no/64-bit$xxx ;;
191esac'
43bf06b7
JH
192 if test -n "$ccisgcc" -o -n "$gccversion"; then
193 ld="$cc"
194 else
195 ld=/usr/bin/ld
196 fi
bf0c440f
JH
197 ar=/usr/bin/ar
198 full_ar=$ar
199
43bf06b7
JH
200 if test -z "$ccisgcc" -a -z "$gccversion"; then
201 # The strict ANSI mode (-Aa) doesn't like the LL suffixes.
adc81979 202 ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
b36fec95 203 case "$ccflags" in
adc81979 204 *-Ae*) ;;
b36fec95
JH
205 *) ccflags="$ccflags -Ae" ;;
206 esac
43bf06b7 207 fi
bf0c440f
JH
208
209 set `echo " $libswanted " | sed -e 's@ dl @ @'`
210 libswanted="$*"
211
bf0c440f
JH
212 ;;
213esac
214
b36fec95
JH
215case "$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" ;;
218esac
219
b36fec95
JH
220case "$ccisgcc" in
221"$define") ;;
222*) case "`getconf KERNEL_BITS 2>/dev/null`" in
223 *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
224 esac
225 ;;
bf0c440f
JH
226esac
227
8e07c86e
AD
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
8e07c86e 234# The libraries crypt, malloc, ndir, and net are empty.
0ca047c2 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.
a28b458a 237set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ dbm @ @' -e 's@ BSD @ @' -e 's@ PW @ @'`
8e07c86e
AD
238libswanted="$*"
239
a28b458a
CP
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"
214989af 251ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
8e07c86e 252
f1c70a39
GS
253case "$usemymalloc" in
254'') usemymalloc='y' ;;
255esac
256
8e07c86e 257alignbytes=8
a28b458a
CP
258# For native nm, you need "-p" to produce BSD format output.
259nm_opt='-p'
8ebc5c01 260
774d564b 261# When HP-UX runs a script with "#!", it sets argv[0] to the script name.
262toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
263
8e07c86e
AD
264# If your compile complains about FLT_MIN, uncomment the next line
265# POSIX_cflags='ccflags="$ccflags -DFLT_MIN=1.17549435E-38"'
266
4633a7c4 267# Comment this out if you don't want to follow the SVR4 filesystem layout
8e07c86e
AD
268# that HP-UX 10.0 uses
269case "$prefix" in
08a33705 270'') prefix='/opt/perl5' ;;
8e07c86e 271esac
4137488c 272
dc45a647
MB
273# HP-UX can't do setuid emulation offered by Configure
274case "$d_dosuid" in
275'') d_dosuid="$undef" ;;
276esac
277
5cf1d1f1
JH
278# HP-UX 11 groks also LD_LIBRARY_PATH but SHLIB_PATH
279# is recommended for compatibility.
280case "$ldlibpthname" in
281'') ldlibpthname=SHLIB_PATH ;;
282esac
283
716026f9 284# HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
b36fec95
JH
285case "$ccisgcc" in
286"$define") ccflags="$ccflags -DUINT32_MAX_BROKEN" ;;
716026f9
DL
287esac
288
fa2879fb
JH
289cat > 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.
293echo 'main() { return 0; }' > try.c
294 # Indent to avoid propagation to config.sh
295 verbose=`${cc:-cc} -v -o try try.c 2>&1`
296if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
297 # Using gcc.
298 : nothing to see here, move on.
299else
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
9c3309b4
JH
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
fa2879fb
JH
310END
311 ar=/usr/bin/ar
312 fi
313 ;;
314 esac
315fi
316
317EOSH
318
4137488c 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.
104d25b7 326
de6124c8 327cat > UU/usethreads.cbu <<'EOCBU'
104d25b7
JH
328# This script UU/usethreads.cbu will get 'called-back' by Configure
329# after it has prompted the user for whether to use threads.
104d25b7
JH
330case "$usethreads" in
331$define|true|[yY]*)
332 if [ "$xxOsRevMajor" -lt 10 ]; then
333 cat <<EOM >&4
334HP-UX $xxOsRevMajor cannot support POSIX threads.
335Consider upgrading to at least HP-UX 11.
336Cannot continue, aborting.
337EOM
338 exit 1
339 fi
340 case "$xxOsRevMajor" in
341 10)
c7d9b096
JH
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
104d25b7
JH
375 cat <<EOM >&4
376In HP-UX 10.X for POSIX threads you need both of the files
c7d9b096
JH
377/usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl.
378Either 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
104d25b7
JH
381Cannot continue, aborting.
382EOM
383 exit 1
c7d9b096 384 fi
104d25b7 385
104d25b7 386 ;;
227c31c3
JH
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="$*"
104d25b7
JH
392 ;;
393 esac
227c31c3 394 usemymalloc='n'
104d25b7
JH
395 ;;
396esac
397EOCBU
398
5e3f8698
JH
399case "$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
406EOM
407 uselargefiles="$undef"
408 ;;
409esac
410
8a647129
JH
411cat > UU/uselargefiles.cbu <<'EOCBU'
412# This script UU/uselargefiles.cbu will get 'called-back' by Configure
de6124c8 413# after it has prompted the user for whether to use large files.
bd9b35c9 414case "$uselargefiles" in
10cc9d2a 415''|$define|true|[yY]*)
7b0dd49d 416 # there are largefile flags available via getconf(1)
9422c00b 417 # but we cheat for now. (Keep that in the left margin.)
45c9e83b 418ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
9422c00b 419
45c9e83b 420 ccflags="$ccflags $ccflags_uselargefiles"
43999f95 421
43bf06b7
JH
422 if test -z "$ccisgcc" -a -z "$gccversion"; then
423 # The strict ANSI mode (-Aa) doesn't like large files.
a0147706
JH
424 ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
425 case "$ccflags" in
426 *-Ae*) ;;
427 *) ccflags="$ccflags -Ae" ;;
428 esac
43bf06b7 429 fi
adc81979 430
bd9b35c9
JH
431 ;;
432esac
433EOCBU
6b8eaf93 434
b36fec95
JH
435# keep that leading tab.
436 ccisgcc=''
f7dd4e7f 437