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