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