This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [PATCH 5.6.1] OS2 Configure
[perl5.git] / hints / hpux.sh
CommitLineData
1dc48e02 1#!/usr/bin/sh
8e07c86e 2
1dc48e02 3### SYSTEM ARCHITECTURE
8e07c86e 4
1dc48e02
JH
5# Determine the architecture type of this system.
6# Keep leading tab below -- Configure Black Magic -- RAM, 03/02/97
7 xxOsRevMajor=`uname -r | sed -e 's/^[^0-9]*//' | cut -d. -f1`;
8if [ "$xxOsRevMajor" -ge 10 ]; then
9 # This system is running >= 10.x
10
11 # Tested on 10.01 PA1.x and 10.20 PA[12].x.
12 # Idea: Scan /usr/include/sys/unistd.h for matches with
13 # "#define CPU_* `getconf # CPU_VERSION`" to determine CPU type.
14 # Note the text following "CPU_" is used, *NOT* the comment.
15 #
16 # ASSUMPTIONS: Numbers will continue to be defined in hex -- and in
17 # /usr/include/sys/unistd.h -- and the CPU_* #defines will be kept
18 # up to date with new CPU/OS releases.
19 xxcpu=`getconf CPU_VERSION`; # Get the number.
20 xxcpu=`printf '0x%x' $xxcpu`; # convert to hex
21 archname=`sed -n -e "s/^#[ \t]*define[ \t]*CPU_//p" /usr/include/sys/unistd.h |
22 sed -n -e "s/[ \t]*$xxcpu[ \t].*//p" |
23 sed -e s/_RISC/-RISC/ -e s/HP_// -e s/_/./`;
24else
25 # This system is running <= 9.x
26 # Tested on 9.0[57] PA and [78].0 MC680[23]0. Idea: After removing
27 # MC6888[12] from context string, use first CPU identifier.
28 #
29 # ASSUMPTION: Only CPU identifiers contain no lowercase letters.
30 archname=`getcontext | tr ' ' '\012' | grep -v '[a-z]' | grep -v MC688 |
31 sed -e 's/HP-//' -e 1q`;
32 selecttype='int *'
8e07c86e 33 fi
8e07c86e 34
1dc48e02
JH
35echo "Archname is $archname"
36
37
38### HP-UX OS specific behaviour
5e4c82f0 39
e08bfeb2
JH
40# -ldbm is obsolete and should not be used
41# -lBSD contains BSD-style duplicates of SVR4 routines that cause confusion
42# -lPW is obsolete and should not be used
43# The libraries crypt, malloc, ndir, and net are empty.
c723583c
JH
44set `echo "X $libswanted " | sed -e 's/ ld / /' -e 's/ dbm / /' -e 's/ BSD / /' -e 's/ PW / /'`
45shift
e08bfeb2
JH
46libswanted="$*"
47
1dc48e02 48cc=${cc:-cc}
c723583c
JH
49ar=/usr/bin/ar # Yes, truly override. We do not want the GNU ar.
50full_ar=$ar # I repeat, no GNU ar. arrr.
167d2fcb 51
c723583c
JH
52set `echo "X $ccflags " | sed -e 's/ -A[ea] / /' -e 's/ -D_HPUX_SOURCE / /'`
53shift
54 cc_cppflags="$* -D_HPUX_SOURCE"
55cppflags="-Aa -D__STDC_EXT__ $cc_cppflags"
56
57case "$prefix" in
58 "") prefix='/opt/perl5' ;;
59 esac
0f3ba31f 60
dcd01700
JH
61 gnu_as=no
62 gnu_ld=no
b36fec95 63case `$cc -v 2>&1`"" in
c723583c 64 *gcc*) ccisgcc="$define"
dcd01700 65 ccflags="$cc_cppflags"
0f3ba31f 66 case "`getconf KERNEL_BITS 2>/dev/null`" in
dcd01700
JH
67 *64*)
68 echo "main(){}">try.c
69 # gcc with gas will not accept +DA2.0
70 case "`$cc -c -Wa,+DA2.0 try.c 2>&1`" in
71 *"+DA2.0"*) # gas
72 gnu_as=yes
73 ;;
74 *) # HPas
75 ccflags="$ccflags -Wa,+DA2.0"
76 ;;
77 esac
78 # gcc with gld will not accept +vnocompatwarnings
79 case "`$cc -o try -Wl,+vnocompatwarnings try.c 2>&1`" in
80 *"+vnocompat"*) # gld
81 gnu_ld=yes
82 ;;
83 *) # HPld
84 ldflags="$ldflags -Wl,+vnocompatwarnings"
85 ccflags="$ccflags -Wl,+vnocompatwarnings"
86 ;;
87 esac
88 ;;
0f3ba31f 89 esac
c723583c
JH
90 ;;
91 *) ccisgcc=''
92 ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
5e2807cc
MB
93 ccflags="-Ae $cc_cppflags -Wl,+vnocompatwarnings"
94 # Needed because cpp does only support -Aa (not -Ae)
95 cpplast='-'
96 cppminus='-'
97 cppstdin='cc -E -Aa -D__STDC_EXT__'
98 cpprun=$cppstdin
0f3ba31f
JH
99 case "$d_casti32" in
100 "") d_casti32='undef' ;;
101 esac
102 ;;
1dc48e02
JH
103 esac
104
e08bfeb2
JH
105# When HP-UX runs a script with "#!", it sets argv[0] to the script name.
106toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
1dc48e02 107
1dc48e02 108### 64 BITNESS
b36fec95 109
dcd01700
JH
110# Some gcc versions do native 64 bit long (e.g. 2.9-hppa-000310)
111# We have to force 64bitness to go search the right libraries
112 gcc_64native=no
113case "$ccisgcc" in
114 $define|true|[Yy])
115 echo 'int main(){long l;printf("%d\n",sizeof(l));}'>try.c
116 $cc -o try $ccflags $ldflags try.c
117 if [ "`try`" = "8" ]; then
118 cat <<EOM >&4
119
120*** This version of gcc uses 64 bit longs. -Duse64bitall is
121*** implicitly set to enable continuation
122EOM
123 use64bitall=$define
124 gcc_64native=yes
125 fi
126 ;;
127 esac
128
ec7b9793 129case "$use64bitall" in
1dc48e02
JH
130 $define|true|[yY]*) use64bitint="$define" ;;
131 esac
132
6d5d7abf 133case "$usemorebits" in
1dc48e02
JH
134 $define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;;
135 esac
bf0c440f 136
1dc48e02
JH
137case "$uselongdouble" in
138 $define|true|[yY]*)
139 cat <<EOM >&4
140
141*** long doubles are not (yet) supported on HP-UX (any version)
142*** Until it does, we cannot continue, aborting.
bf0c440f 143EOM
1dc48e02
JH
144 exit 1 ;;
145 esac
bf0c440f 146
1dc48e02
JH
147case "$use64bitint" in
148 $define|true|[Yy])
bf0c440f 149
1dc48e02
JH
150 if [ "$xxOsRevMajor" -lt 11 ]; then
151 cat <<EOM >&4
152
153*** 64-bit compilation is not supported on HP-UX $xxOsRevMajor.
154*** You need at least HP-UX 11.0.
ec7b9793 155*** Cannot continue, aborting.
bf0c440f 156EOM
1dc48e02
JH
157 exit 1
158 fi
bf0c440f 159
1dc48e02
JH
160 # Set libc and the library paths
161 case "$archname" in
162 PA-RISC*)
163 loclibpth="$loclibpth /lib/pa20_64"
164 libc='/lib/pa20_64/libc.sl' ;;
165 IA64*)
166 loclibpth="$loclibpth /usr/lib/hpux64"
167 libc='/usr/lib/hpux64/libc.so' ;;
168 esac
169 if [ ! -f "$libc" ]; then
170 cat <<EOM >&4
171
172*** You do not seem to have the 64-bit libc.
173*** I cannot find the file $libc.
174*** Cannot continue, aborting.
175EOM
176 exit 1
177 fi
bf0c440f 178
dcd01700
JH
179 case "$ccisgcc" in
180 $define|true|[Yy])
181 # For the moment, don't care that it ain't supported (yet)
182 # by gcc (up to and including 2.95.3), cause it'll crash
183 # anyway. Expect auto-detection of 64-bit enabled gcc on
184 # HP-UX soon, including a user-friendly exit
185 case $gcc_64native in
186 no) ccflags="$ccflags -mlp64"
187 ldflags="$ldflags -Wl,+DD64"
188 ;;
189 esac
190 ;;
191 *)
192 ccflags="$ccflags +DD64"
193 ldflags="$ldflags +DD64"
194 ;;
195 esac
bf0c440f 196
1dc48e02
JH
197 # Reset the library checker to make sure libraries
198 # are the right type
199 libscheck='case "`/usr/bin/file $xxx`" in
200 *ELF-64*|*LP64*|*PA-RISC2.0*) ;;
201 *) xxx=/no/64-bit$xxx ;;
202 esac'
203
204 ;;
205
206 *) # Not in 64-bit mode
207
208 case "$archname" in
209 PA-RISC*)
210 libc='/lib/libc.sl' ;;
211 IA64*)
212 loclibpth="$loclibpth /usr/lib/hpux32"
213 libc='/usr/lib/hpux32/libc.so' ;;
214 esac
215 ;;
216 esac
217
dcd01700
JH
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"
229if [ "$gnu_ld" = "yes" ]; then
230 ccdlflags="-Wl,-E $ccdlflags"
231else
232 ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags"
233 fi
234
1dc48e02
JH
235
236### COMPILER SPECIFICS
bf0c440f 237
7f128676
MB
238## Local restrictions (point to README.hpux to lift these)
239
240## Optimization limits
241cat >try.c <<EOF
242#include <sys/resource.h>
243
244int main ()
245{
246 struct rlimit rl;
247 int i = getrlimit (RLIMIT_DATA, &rl);
248 printf ("%d\n", rl.rlim_cur / (1024 * 1024));
249 } /* main */
250EOF
251$cc -o try $ccflags $ldflags try.c
252 maxdsiz=`try`
253if [ $maxdsiz -le 64 ]; then
254 # 64 Mb is probably not enough to optimize toke.c
255 # and regexp.c with -O2
256 cat <<EOM >&4
257Your kernel limits the data section of your programs to $maxdsiz Mb,
258which is (sadly) not enough to fully optimize some parts of the
259perl binary. I'll try to use a lower optimization level for
260those parts. If you are a sysadmin, and you *do* want full
261optimization, raise the 'maxdsiz' kernel configuration parameter
262to at least 0x08000000 (128 Mb) and rebuild your kernel.
263EOM
a6bab54c 264regexec_cflags=''
7f128676
MB
265 fi
266
b36fec95 267case "$ccisgcc" in
1dc48e02
JH
268 $define|true|[Yy])
269
270 case "$optimize" in
c723583c
JH
271 "") optimize="-g -O" ;;
272 *O[3456789]*) optimize=`echo "$optimize" | sed -e 's/O[3-9]/O2/'` ;;
1dc48e02 273 esac
c723583c 274 #ld="$cc"
5e2807cc 275 ld=/usr/bin/ld
1dc48e02 276 cccdlflags='-fPIC'
c723583c 277 #lddlflags='-shared'
5e2807cc 278 lddlflags='-b'
c723583c
JH
279 case "$optimize" in
280 *-g*-O*|*-O*-g*)
281 # gcc without gas will not accept -g
282 echo "main(){}">try.c
283 case "`$cc $optimize -c try.c 2>&1`" in
284 *"-g option disabled"*)
285 set `echo "X $optimize " | sed -e 's/ -g / /'`
286 shift
287 optimize="$*"
288 ;;
289 esac
290 ;;
291 esac
7f128676 292 if [ $maxdsiz -le 64 ]; then
7f128676
MB
293 case "$optimize" in
294 *O2*) opt=`echo "$optimize" | sed -e 's/O2/O1/'`
a6bab54c
JH
295 toke_cflags="$toke_cflags;optimize=\"$opt\""
296 regexec_cflags="optimize=\"$opt\""
7f128676
MB
297 ;;
298 esac
299 fi
1dc48e02
JH
300 ;;
301
302 *) # HP's compiler cannot combine -g and -O
303 case "$optimize" in
5e2807cc 304 "") optimize="+O2 +Onolimit" ;;
c723583c 305 *O[3456789]*) optimize=`echo "$optimize" | sed -e 's/O[3-9]/O2/'` ;;
1dc48e02 306 esac
7f128676 307 if [ $maxdsiz -le 64 ]; then
7f128676
MB
308 case "$optimize" in
309 *-O*|\
310 *O2*) opt=`echo "$optimize" | sed -e 's/-O/+O2/' -e 's/O2/O1/' -e 's/ *+Onolimit//'`
a6bab54c
JH
311 toke_cflags="$toke_cflags;optimize=\"$opt\""
312 regexec_cflags="optimize=\"$opt\""
7f128676
MB
313 ;;
314 esac
315 fi
1dc48e02
JH
316 ld=/usr/bin/ld
317 cccdlflags='+Z'
c723583c 318 lddlflags='-b +vnocompatwarnings'
1dc48e02 319 ;;
b36fec95 320 esac
8e07c86e 321
1dc48e02 322## LARGEFILES
774d564b 323
c723583c
JH
324#case "$uselargefiles-$ccisgcc" in
325# "$define-$define"|'-define')
326# cat <<EOM >&4
327#
328#*** I'm ignoring large files for this build because
329#*** I don't know how to do use large files in HP-UX using gcc.
330#
331#EOM
332# uselargefiles="$undef"
333# ;;
334# esac
dc45a647 335
1dc48e02
JH
336cat >UU/uselargefiles.cbu <<'EOCBU'
337# This script UU/uselargefiles.cbu will get 'called-back' by Configure
338# after it has prompted the user for whether to use large files.
339case "$uselargefiles" in
340 ""|$define|true|[yY]*)
341 # there are largefile flags available via getconf(1)
342 # but we cheat for now. (Keep that in the left margin.)
343ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
5cf1d1f1 344
1dc48e02
JH
345 ccflags="$ccflags $ccflags_uselargefiles"
346
347 if test -z "$ccisgcc" -a -z "$gccversion"; then
348 # The strict ANSI mode (-Aa) doesn't like large files.
349 ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
350 case "$ccflags" in
351 *-Ae*) ;;
352 *) ccflags="$ccflags -Ae" ;;
353 esac
fa2879fb
JH
354 fi
355 ;;
356 esac
1dc48e02 357EOCBU
fa2879fb 358
1dc48e02 359# THREADING
104d25b7
JH
360
361# This script UU/usethreads.cbu will get 'called-back' by Configure
362# after it has prompted the user for whether to use threads.
1dc48e02 363cat >UU/usethreads.cbu <<'EOCBU'
104d25b7 364case "$usethreads" in
1dc48e02
JH
365 $define|true|[yY]*)
366 if [ "$xxOsRevMajor" -lt 10 ]; then
367 cat <<EOM >&4
f1ee07ac 368
104d25b7
JH
369HP-UX $xxOsRevMajor cannot support POSIX threads.
370Consider upgrading to at least HP-UX 11.
371Cannot continue, aborting.
372EOM
1dc48e02
JH
373 exit 1
374 fi
375
376 if [ "$xxOsRevMajor" -eq 10 ]; then
377 # Under 10.X, a threaded perl can be built
378 if [ -f /usr/include/pthread.h ]; then
c7d9b096
JH
379 if [ -f /usr/lib/libcma.sl ]; then
380 # DCE (from Core OS CD) is installed
381
1dc48e02
JH
382 # It needs # libcma and OLD_PTHREADS_API. Also
383 # <pthread.h> needs to be #included before any
384 # other includes (in perl.h)
c7d9b096
JH
385
386 # HP-UX 10.X uses the old pthreads API
387 d_oldpthreads="$define"
388
389 # include libcma before all the others
390 libswanted="cma $libswanted"
391
1dc48e02
JH
392 # tell perl.h to include <pthread.h> before other
393 # include files
c7d9b096
JH
394 ccflags="$ccflags -DPTHREAD_H_FIRST"
395
1dc48e02
JH
396 # CMA redefines select to cma_select, and cma_select
397 # expects int * instead of fd_set * (just like 9.X)
c7d9b096
JH
398 selecttype='int *'
399
400 elif [ -f /usr/lib/libpthread.sl ]; then
401 # PTH package is installed
402 libswanted="pthread $libswanted"
403 else
404 libswanted="no_threads_available"
405 fi
406 else
407 libswanted="no_threads_available"
408 fi
409
1dc48e02
JH
410 if [ $libswanted = "no_threads_available" ]; then
411 cat <<EOM >&4
f1ee07ac 412
104d25b7 413In HP-UX 10.X for POSIX threads you need both of the files
c7d9b096
JH
414/usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl.
415Either you must upgrade to HP-UX 11 or install a posix thread library:
f1ee07ac
JH
416
417 DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941)
418
419or
420
1dc48e02 421 PTH package from e.g. http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html
f1ee07ac 422
104d25b7
JH
423Cannot continue, aborting.
424EOM
1dc48e02 425 exit 1
c7d9b096 426 fi
1dc48e02
JH
427 else
428 # 12 may want upping the _POSIX_C_SOURCE datestamp...
429 ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags"
430 set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
431 shift
432 libswanted="$*"
433 fi
104d25b7 434
227c31c3 435 usemymalloc='n'
104d25b7 436 ;;
1dc48e02 437 esac
bd9b35c9 438EOCBU