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