another optimized-OP_SASSIGN bug: ops that were not OA_TARGLEX
[p5sagit/p5-mst-13.2.git] / hints / hpux.sh
CommitLineData
a28b458a 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 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 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 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 31# Use Configure -Dcc=gcc to use gcc.
32# Use Configure -Dprefix=/usr/local to install in /usr/local.
68dc0745 33#
a28b458a 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 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 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 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 82 else
83 ccflags="$ccflags -Aa" # The add-on compiler supports ANSI C
959c26a4 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 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 100 optimize='-O'
6cc5f3e7 101 cc=cc
8e07c86e 102 ;;
103esac
104
b36fec95 105case `$cc -v 2>&1`"" in
106*gcc*) ccisgcc="$define" ;;
107*) ccisgcc='' ;;
108esac
109
4633a7c4 110# Determine the architecture type of this system.
fa89f053 111# Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
a28b458a 112 xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
113 #xxOsRevMinor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f2`;
114if [ "$xxOsRevMajor" -ge 10 ]
4633a7c4 115then
a28b458a 116 # This system is running >= 10.x
117
118 # Tested on 10.01 PA1.x and 10.20 PA[12].x. Idea: Scan
119 # /usr/include/sys/unistd.h for matches with "#define CPU_* `getconf
120 # CPU_VERSION`" to determine CPU type. Note the part following
121 # "CPU_" is used, *NOT* the comment.
122 #
123 # ASSUMPTIONS: Numbers will continue to be defined in hex -- and in
124 # /usr/include/sys/unistd.h -- and the CPU_* #defines will be kept
125 # up to date with new CPU/OS releases.
126 xxcpu=`getconf CPU_VERSION`; # Get the number.
127 xxcpu=`printf '0x%x' $xxcpu`; # convert to hex
128 archname=`sed -n -e "s/^#[ \t]*define[ \t]*CPU_//p" /usr/include/sys/unistd.h |
129 sed -n -e "s/[ \t]*$xxcpu[ \t].*//p" |
130 sed -e s/_RISC/-RISC/ -e s/HP_// -e s/_/./`;
4633a7c4 131else
a28b458a 132 # This system is running <= 9.x
133 # Tested on 9.0[57] PA and [78].0 MC680[23]0. Idea: After removing
134 # MC6888[12] from context string, use first CPU identifier.
135 #
136 # ASSUMPTION: Only CPU identifiers contain no lowercase letters.
137 archname=`getcontext | tr ' ' '\012' | grep -v '[a-z]' | grep -v MC688 |
138 sed -e 's/HP-//' -e 1q`;
90248788 139 selecttype='int *'
4633a7c4 140fi
141
140a4568 142# Do this right now instead of the delayed callback unit approach.
ec7b9793 143case "$use64bitall" in
144$define|true|[yY]*) use64bitint="$define" ;;
145esac
10cc9d2a 146case "$use64bitint" in
bf0c440f 147$define|true|[yY]*)
148 if [ "$xxOsRevMajor" -lt 11 ]; then
149 cat <<EOM >&4
150
15164-bit compilation is not supported on HP-UX $xxOsRevMajor.
152You need at least HP-UX 11.0.
153Cannot continue, aborting.
154
155EOM
156 exit 1
157 fi
158
159 # Without the 64-bit libc we cannot do much.
ec7b9793 160 libc='/lib/pa20_64/libc.sl'
161 if [ ! -f "$libc" ]; then
bf0c440f 162 cat <<EOM >&4
163
ec7b9793 164*** You do not seem to have the 64-bit libraries in /lib/pa20_64.
165*** Most importantly, I cannot find the $libc.
166*** Cannot continue, aborting.
bf0c440f 167
168EOM
169 exit 1
170 fi
171
172 ccflags="$ccflags +DD64"
173 ldflags="$ldflags +DD64"
09ea5ba9 174 test -d /lib/pa20_64 && loclibpth="$loclibpth /lib/pa20_64"
b1b472cb 175 libscheck='case "`/usr/bin/file $xxx`" in
bf0c440f 176*LP64*|*PA-RISC2.0*) ;;
177*) xxx=/no/64-bit$xxx ;;
178esac'
b36fec95 179 case "$ccisgcc" in
180 "$define") ld=$cc ;;
181 *) ld=/usr/bin/ld ;;
182 esac
bf0c440f 183 ar=/usr/bin/ar
184 full_ar=$ar
185
b36fec95 186 case "$ccisgcc" in
187 "$define") ;;
188 *) # The strict ANSI mode (-Aa) doesn't like the LL suffixes.
189 case "$ccflags" in
190 *-Aa*)
bf0c440f 191 echo "(Changing from strict ANSI compilation to extended because of 64-bitness)"
192 ccflags=`echo $ccflags|sed 's@ -Aa @ -Ae @'`
193 ;;
b36fec95 194 *) ccflags="$ccflags -Ae" ;;
195 esac
196 ;;
bf0c440f 197 esac
198
199 set `echo " $libswanted " | sed -e 's@ dl @ @'`
200 libswanted="$*"
201
b36fec95 202 case "$ccisgcc" in
203 "$define") ;;
bf0c440f 204 esac
205 ;;
206esac
207
b36fec95 208case "$ccisgcc" in
209# Even if you use gcc, prefer the HP math library over the GNU one.
210"$define") test -d /lib/pa1.1 && ccflags="$ccflags -L/lib/pa1.1" ;;
211esac
212
213
214case "$ccisgcc" in
215"$define") ;;
216*) case "`getconf KERNEL_BITS 2>/dev/null`" in
217 *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
218 esac
219 ;;
bf0c440f 220esac
221
8e07c86e 222# Remove bad libraries that will cause problems
223# (This doesn't remove libraries that don't actually exist)
224# -lld is unneeded (and I can't figure out what it's used for anyway)
225# -ldbm is obsolete and should not be used
226# -lBSD contains BSD-style duplicates of SVR4 routines that cause confusion
227# -lPW is obsolete and should not be used
8e07c86e 228# The libraries crypt, malloc, ndir, and net are empty.
0ca047c2 229# Although -lndbm should be included, it will make perl blow up if you should
230# copy the binary to a system without libndbm.sl. See ccdlflags below.
a28b458a 231set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ dbm @ @' -e 's@ BSD @ @' -e 's@ PW @ @'`
8e07c86e 232libswanted="$*"
233
a28b458a 234# By setting the deferred flag below, this means that if you run perl
235# on a system that does not have the required shared library that you
236# linked it with, it will die when you try to access a symbol in the
237# (missing) shared library. If you would rather know at perl startup
238# time that you are missing an important shared library, switch the
239# comments so that immediate, rather than deferred loading is
240# performed. Even with immediate loading, you can postpone errors for
241# undefined (or multiply defined) routines until actual access by
242# adding the "nonfatal" option.
243# ccdlflags="-Wl,-E -Wl,-B,immediate $ccdlflags"
244# ccdlflags="-Wl,-E -Wl,-B,immediate,-B,nonfatal $ccdlflags"
214989af 245ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
8e07c86e 246
247usemymalloc='y'
248alignbytes=8
a28b458a 249# For native nm, you need "-p" to produce BSD format output.
250nm_opt='-p'
8ebc5c01 251
774d564b 252# When HP-UX runs a script with "#!", it sets argv[0] to the script name.
253toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
254
8e07c86e 255# If your compile complains about FLT_MIN, uncomment the next line
256# POSIX_cflags='ccflags="$ccflags -DFLT_MIN=1.17549435E-38"'
257
4633a7c4 258# Comment this out if you don't want to follow the SVR4 filesystem layout
8e07c86e 259# that HP-UX 10.0 uses
260case "$prefix" in
08a33705 261'') prefix='/opt/perl5' ;;
8e07c86e 262esac
4137488c 263
dc45a647 264# HP-UX can't do setuid emulation offered by Configure
265case "$d_dosuid" in
266'') d_dosuid="$undef" ;;
267esac
268
5cf1d1f1 269# HP-UX 11 groks also LD_LIBRARY_PATH but SHLIB_PATH
270# is recommended for compatibility.
271case "$ldlibpthname" in
272'') ldlibpthname=SHLIB_PATH ;;
273esac
274
716026f9 275# HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
b36fec95 276case "$ccisgcc" in
277"$define") ccflags="$ccflags -DUINT32_MAX_BROKEN" ;;
716026f9 278esac
279
fa2879fb 280cat > UU/cc.cbu <<'EOSH'
281# XXX This script UU/cc.cbu will get 'called-back' by Configure after it
282# XXX has prompted the user for the C compiler to use.
283# Get gcc to share its secrets.
284echo 'main() { return 0; }' > try.c
285 # Indent to avoid propagation to config.sh
286 verbose=`${cc:-cc} -v -o try try.c 2>&1`
287if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
288 # Using gcc.
289 : nothing to see here, move on.
290else
291 # Using cc.
292 ar=${ar:-ar}
293 case "`$ar -V 2>&1`" in
294 *GNU*)
295 if test -x /usr/bin/ar; then
296 cat <<END >&2
297
9c3309b4 298*** You are using HP cc(1) but GNU ar(1). This might lead into trouble
299*** later on, I'm switching to HP ar to play safe.
300
fa2879fb 301END
302 ar=/usr/bin/ar
303 fi
304 ;;
305 esac
306fi
307
308EOSH
309
4137488c 310# Date: Fri, 6 Sep 96 23:15:31 CDT
311# From: "Daniel S. Lewart" <d-lewart@uiuc.edu>
312# I looked through the gcc.info and found this:
313# * GNU CC compiled code sometimes emits warnings from the HP-UX
314# assembler of the form:
315# (warning) Use of GR3 when frame >= 8192 may cause conflict.
316# These warnings are harmless and can be safely ignored.
104d25b7 317
de6124c8 318cat > UU/usethreads.cbu <<'EOCBU'
104d25b7 319# This script UU/usethreads.cbu will get 'called-back' by Configure
320# after it has prompted the user for whether to use threads.
104d25b7 321case "$usethreads" in
322$define|true|[yY]*)
323 if [ "$xxOsRevMajor" -lt 10 ]; then
324 cat <<EOM >&4
325HP-UX $xxOsRevMajor cannot support POSIX threads.
326Consider upgrading to at least HP-UX 11.
327Cannot continue, aborting.
328EOM
329 exit 1
330 fi
331 case "$xxOsRevMajor" in
332 10)
333 # Under 10.X, a threaded perl can be built, but it needs
334 # libcma and OLD_PTHREADS_API. Also <pthread.h> needs to
335 # be #included before any other includes (in perl.h)
336 if [ ! -f /usr/include/pthread.h -o ! -f /usr/lib/libcma.sl ]; then
337 cat <<EOM >&4
338In HP-UX 10.X for POSIX threads you need both of the files
339/usr/include/pthread.h and /usr/lib/libcma.sl.
340Either you must install the CMA package or you must upgrade to HP-UX 11.
341Cannot continue, aborting.
342EOM
343 exit 1
344 fi
345
346 # HP-UX 10.X uses the old pthreads API
347 case "$d_oldpthreads" in
348 '') d_oldpthreads="$define" ;;
349 esac
350
351 # include libcma before all the others
352 libswanted="cma $libswanted"
353
354 # tell perl.h to include <pthread.h> before other include files
355 ccflags="$ccflags -DPTHREAD_H_FIRST"
356
357 # CMA redefines select to cma_select, and cma_select expects int *
358 # instead of fd_set * (just like 9.X)
359 selecttype='int *'
360 ;;
227c31c3 361 11 | 12) # 12 may want upping the _POSIX_C_SOURCE datestamp...
362 ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags"
363 set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
364 shift
365 libswanted="$*"
104d25b7 366 ;;
367 esac
227c31c3 368 usemymalloc='n'
104d25b7 369 ;;
370esac
371EOCBU
372
5e3f8698 373case "$uselargefiles-$ccisgcc" in
374"$define-$define"|'-define')
375 cat <<EOM >&4
376
377*** I'm ignoring large files for this build because
378*** I don't know how to do use large files in HP-UX using gcc.
379
380EOM
381 uselargefiles="$undef"
382 ;;
383esac
384
8a647129 385cat > UU/uselargefiles.cbu <<'EOCBU'
386# This script UU/uselargefiles.cbu will get 'called-back' by Configure
de6124c8 387# after it has prompted the user for whether to use large files.
bd9b35c9 388case "$uselargefiles" in
10cc9d2a 389''|$define|true|[yY]*)
7b0dd49d 390 # there are largefile flags available via getconf(1)
391 # but we cheat for now.
392 ccflags="$ccflags -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
43999f95 393
394 # The strict ANSI mode (-Aa) doesn't like large files.
f7dd4e7f 395 case "$ccflags" in
5e3f8698 396 -Aa*)
f7dd4e7f 397 echo "(Changing from strict ANSI compilation to extended because of large files)"
398 ccflags=`echo $ccflags|sed 's@ -Aa @ -Ae @'`
399 ;;
5e3f8698 400 *) ccflags="$ccflags -Ae" ;;
401 esac
bd9b35c9 402 ;;
403esac
404EOCBU
6b8eaf93 405
b36fec95 406# keep that leading tab.
407 ccisgcc=''
f7dd4e7f 408