This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
AIX is picky about its symbol exports. Solution for now
[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
27 # This version: March 8, 2000
28 # Current maintainer: Jeff Okamoto <okamoto@corp.hp.com>
29
30 #--------------------------------------------------------------------
31 # Use Configure -Dcc=gcc to use gcc.
32 # Use Configure -Dprefix=/usr/local to install in /usr/local.
33 #
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.
48 #
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').
53 #--------------------------------------------------------------------
54
55 # Turn on the _HPUX_SOURCE flag to get many of the HP add-ons
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.
66 ccflags="$ccflags -D_HPUX_SOURCE"
67
68 # Check if you're using the bundled C compiler.  This compiler doesn't support
69 # ANSI C (the -Aa flag) and so is not suitable for perl 5.5 and later.
70 case "$cc" in
71 '') if cc $ccflags -Aa 2>&1 | $contains 'option' >/dev/null
72     then
73              cat <<'EOM' >&4
74
75 The bundled C compiler is not ANSI-compliant, and so cannot be used to
76 build perl.  Please see the file README.hpux for advice on alternative
77 compilers.
78
79 Cannot continue, aborting.
80 EOM
81         exit 1
82     else
83         ccflags="$ccflags -Aa"  # The add-on compiler supports ANSI C
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='-'
94     fi
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
104     cc=cc
105     ;;
106 esac
107
108 cc=${cc:-cc}
109
110 case `$cc -v 2>&1`"" in
111 *gcc*) ccisgcc="$define" ;;
112 *) ccisgcc=''
113    ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
114    ;;
115 esac
116
117 # Determine the architecture type of this system.
118 # Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
119         xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
120         #xxOsRevMinor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f2`;
121 if [ "$xxOsRevMajor" -ge 10 ]
122 then
123         # This system is running >= 10.x
124
125         # Tested on 10.01 PA1.x and 10.20 PA[12].x.  Idea: Scan
126         # /usr/include/sys/unistd.h for matches with "#define CPU_* `getconf
127         # CPU_VERSION`" to determine CPU type.  Note the part following
128         # "CPU_" is used, *NOT* the comment.
129         #
130         # ASSUMPTIONS: Numbers will continue to be defined in hex -- and in
131         # /usr/include/sys/unistd.h -- and the CPU_* #defines will be kept
132         # up to date with new CPU/OS releases.
133         xxcpu=`getconf CPU_VERSION`; # Get the number.
134         xxcpu=`printf '0x%x' $xxcpu`; # convert to hex
135         archname=`sed -n -e "s/^#[ \t]*define[ \t]*CPU_//p" /usr/include/sys/unistd.h |
136             sed -n -e "s/[ \t]*$xxcpu[ \t].*//p" |
137             sed -e s/_RISC/-RISC/ -e s/HP_// -e s/_/./`;
138 else
139         # This system is running <= 9.x
140         # Tested on 9.0[57] PA and [78].0 MC680[23]0.  Idea: After removing
141         # MC6888[12] from context string, use first CPU identifier.
142         #
143         # ASSUMPTION: Only CPU identifiers contain no lowercase letters.
144         archname=`getcontext | tr ' ' '\012' | grep -v '[a-z]' | grep -v MC688 |
145             sed -e 's/HP-//' -e 1q`;
146         selecttype='int *'
147 fi
148
149 # Do this right now instead of the delayed callback unit approach.
150 case "$use64bitall" in
151 $define|true|[yY]*) use64bitint="$define" ;;
152 esac
153 case "$use64bitint" in
154 $define|true|[yY]*)
155     if [ "$xxOsRevMajor" -lt 11 ]; then
156                 cat <<EOM >&4
157
158 64-bit compilation is not supported on HP-UX $xxOsRevMajor.
159 You need at least HP-UX 11.0.
160 Cannot continue, aborting.
161
162 EOM
163                 exit 1
164     fi
165
166     # Without the 64-bit libc we cannot do much.
167     libc='/lib/pa20_64/libc.sl'
168     if [ ! -f "$libc" ]; then
169                 cat <<EOM >&4
170
171 *** You do not seem to have the 64-bit libraries in /lib/pa20_64.
172 *** Most importantly, I cannot find the $libc.
173 *** Cannot continue, aborting.
174
175 EOM
176                 exit 1
177     fi
178
179     ccflags="$ccflags +DD64"
180     ldflags="$ldflags +DD64"
181     test -d /lib/pa20_64 && loclibpth="$loclibpth /lib/pa20_64"
182     libscheck='case "`/usr/bin/file $xxx`" in
183 *LP64*|*PA-RISC2.0*) ;;
184 *) xxx=/no/64-bit$xxx ;;
185 esac'
186     if test -n "$ccisgcc" -o -n "$gccversion"; then
187         ld="$cc"
188     else        
189         ld=/usr/bin/ld
190     fi
191     ar=/usr/bin/ar
192     full_ar=$ar
193
194     if test -z "$ccisgcc" -a -z "$gccversion"; then
195        # The strict ANSI mode (-Aa) doesn't like the LL suffixes.
196        ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
197        case "$ccflags" in
198        *-Ae*) ;;
199        *) ccflags="$ccflags -Ae" ;;
200        esac
201     fi
202
203     set `echo " $libswanted " | sed -e 's@ dl @ @'`
204     libswanted="$*"
205
206     ;;
207 esac
208
209 case "$ccisgcc" in
210 # Even if you use gcc, prefer the HP math library over the GNU one.
211 "$define") test -d /lib/pa1.1 && ccflags="$ccflags -L/lib/pa1.1" ;;
212 esac
213     
214 case "$ccisgcc" in
215 "$define") ;;
216 *)  case "`getconf KERNEL_BITS 2>/dev/null`" in
217     *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
218     esac
219     ;;
220 esac
221
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
228 # The libraries crypt, malloc, ndir, and net are empty.
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.
231 set `echo " $libswanted " | sed -e 's@ ld @ @' -e 's@ dbm @ @' -e 's@ BSD @ @' -e 's@ PW @ @'`
232 libswanted="$*"
233
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"
245 ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
246
247 case "$usemymalloc" in
248 '') usemymalloc='y' ;;
249 esac
250
251 alignbytes=8
252 # For native nm, you need "-p" to produce BSD format output.
253 nm_opt='-p'
254
255 # When HP-UX runs a script with "#!", it sets argv[0] to the script name.
256 toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
257
258 # If your compile complains about FLT_MIN, uncomment the next line
259 # POSIX_cflags='ccflags="$ccflags -DFLT_MIN=1.17549435E-38"'
260
261 # Comment this out if you don't want to follow the SVR4 filesystem layout
262 # that HP-UX 10.0 uses
263 case "$prefix" in
264 '') prefix='/opt/perl5' ;;
265 esac
266
267 # HP-UX can't do setuid emulation offered by Configure
268 case "$d_dosuid" in
269 '') d_dosuid="$undef" ;;
270 esac
271
272 # HP-UX 11 groks also LD_LIBRARY_PATH but SHLIB_PATH
273 # is recommended for compatibility.
274 case "$ldlibpthname" in
275 '') ldlibpthname=SHLIB_PATH ;;
276 esac
277
278 # HP-UX 10.20 and gcc 2.8.1 break UINT32_MAX.
279 case "$ccisgcc" in
280 "$define") ccflags="$ccflags -DUINT32_MAX_BROKEN" ;;
281 esac
282
283 cat > 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.
287 echo 'main() { return 0; }' > try.c
288         # Indent to avoid propagation to config.sh
289         verbose=`${cc:-cc} -v -o try try.c 2>&1`
290 if echo "$verbose" | grep '^Reading specs from' >/dev/null 2>&1; then
291         # Using gcc.
292         : nothing to see here, move on.
293 else
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
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
304 END
305                 ar=/usr/bin/ar
306             fi
307         ;;
308     esac
309 fi
310
311 EOSH
312
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.
320
321 cat > UU/usethreads.cbu <<'EOCBU'
322 # This script UU/usethreads.cbu will get 'called-back' by Configure 
323 # after it has prompted the user for whether to use threads.
324 case "$usethreads" in
325 $define|true|[yY]*)
326         if [ "$xxOsRevMajor" -lt 10 ]; then
327             cat <<EOM >&4
328 HP-UX $xxOsRevMajor cannot support POSIX threads.
329 Consider upgrading to at least HP-UX 11.
330 Cannot continue, aborting.
331 EOM
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
341 In HP-UX 10.X for POSIX threads you need both of the files
342 /usr/include/pthread.h and /usr/lib/libcma.sl.
343 Either you must install the CMA package or you must upgrade to HP-UX 11.
344 Cannot continue, aborting.
345 EOM
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             ;;
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="$*"
369             ;;
370         esac
371         usemymalloc='n'
372         ;;
373 esac
374 EOCBU
375
376 case "$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
383 EOM
384     uselargefiles="$undef"
385     ;;
386 esac
387
388 cat > UU/uselargefiles.cbu <<'EOCBU'
389 # This script UU/uselargefiles.cbu will get 'called-back' by Configure 
390 # after it has prompted the user for whether to use large files.
391 case "$uselargefiles" in
392 ''|$define|true|[yY]*)
393         # there are largefile flags available via getconf(1)
394         # but we cheat for now.  (Keep that in the left margin.)
395 ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
396
397         ccflags="$ccflags $ccflags_uselargefiles"
398
399         if test -z "$ccisgcc" -a -z "$gccversion"; then
400            # The strict ANSI mode (-Aa) doesn't like large files.
401            ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
402            case "$ccflags" in
403            *-Ae*) ;;
404            *) ccflags="$ccflags -Ae" ;;
405            esac
406         fi
407
408         ;;
409 esac
410 EOCBU
411
412 # keep that leading tab.
413         ccisgcc=''
414