New version of HP-UX hints from Merijn.
[p5sagit/p5-mst-13.2.git] / hints / hpux.sh
CommitLineData
1dc48e02 1#!/usr/bin/sh
8e07c86e 2
1dc48e02 3### SYSTEM ARCHITECTURE
8e07c86e 4
1dc48e02 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 35echo "Archname is $archname"
36
37
38### HP-UX OS specific behaviour
5e4c82f0 39
1dc48e02 40# Initial setting of some flags
41ccflags="$ccflags -D_HPUX_SOURCE"
42ldflags="$ldflags -D_HPUX_SOURCE"
43
44# When HP-UX runs a script with "#!", it sets argv[0] to the script name.
45toke_cflags='ccflags="$ccflags -DARG_ZERO_IS_SCRIPT"'
46
47cc=${cc:-cc}
0f3ba31f 48ar=/usr/bin/ar
49
b36fec95 50case `$cc -v 2>&1`"" in
0f3ba31f 51 *gcc*) ccisgcc="$define" ;;
52 *) ccisgcc=''
53 ccversion=`which cc | xargs what | awk '/Compiler/{print $2}'`
54 case "`getconf KERNEL_BITS 2>/dev/null`" in
55 *64*) ldflags="$ldflags -Wl,+vnocompatwarnings" ;;
56 esac
57 case "$d_casti32" in
58 "") d_casti32='undef' ;;
59 esac
60 ;;
1dc48e02 61 esac
62
63set `echo X "$libswanted "| sed -e 's/ BSD//' -e 's/ PW//'`
64shift
65libswanted="$*"
66
67
68### 64 BITNESS
b36fec95 69
ec7b9793 70case "$use64bitall" in
1dc48e02 71 $define|true|[yY]*) use64bitint="$define" ;;
72 esac
73
6d5d7abf 74case "$usemorebits" in
1dc48e02 75 $define|true|[yY]*) use64bitint="$define"; uselongdouble="$define" ;;
76 esac
bf0c440f 77
1dc48e02 78case "$uselongdouble" in
79 $define|true|[yY]*)
80 cat <<EOM >&4
81
82*** long doubles are not (yet) supported on HP-UX (any version)
83*** Until it does, we cannot continue, aborting.
bf0c440f 84EOM
1dc48e02 85 exit 1 ;;
86 esac
bf0c440f 87
1dc48e02 88case "$use64bitint" in
89 $define|true|[Yy])
bf0c440f 90
1dc48e02 91 if [ "$xxOsRevMajor" -lt 11 ]; then
92 cat <<EOM >&4
93
94*** 64-bit compilation is not supported on HP-UX $xxOsRevMajor.
95*** You need at least HP-UX 11.0.
ec7b9793 96*** Cannot continue, aborting.
bf0c440f 97EOM
1dc48e02 98 exit 1
99 fi
bf0c440f 100
1dc48e02 101 # Set libc and the library paths
102 case "$archname" in
103 PA-RISC*)
104 loclibpth="$loclibpth /lib/pa20_64"
105 libc='/lib/pa20_64/libc.sl' ;;
106 IA64*)
107 loclibpth="$loclibpth /usr/lib/hpux64"
108 libc='/usr/lib/hpux64/libc.so' ;;
109 esac
110 if [ ! -f "$libc" ]; then
111 cat <<EOM >&4
112
113*** You do not seem to have the 64-bit libc.
114*** I cannot find the file $libc.
115*** Cannot continue, aborting.
116EOM
117 exit 1
118 fi
bf0c440f 119
1dc48e02 120 ccflags="$ccflags +DD64"
121 ldflags="$ldflags +DD64"
bf0c440f 122
1dc48e02 123 # Reset the library checker to make sure libraries
124 # are the right type
125 libscheck='case "`/usr/bin/file $xxx`" in
126 *ELF-64*|*LP64*|*PA-RISC2.0*) ;;
127 *) xxx=/no/64-bit$xxx ;;
128 esac'
129
130 ;;
131
132 *) # Not in 64-bit mode
133
134 case "$archname" in
135 PA-RISC*)
136 libc='/lib/libc.sl' ;;
137 IA64*)
138 loclibpth="$loclibpth /usr/lib/hpux32"
139 libc='/usr/lib/hpux32/libc.so' ;;
140 esac
141 ;;
142 esac
143
144
145### COMPILER SPECIFICS
bf0c440f 146
b36fec95 147case "$ccisgcc" in
1dc48e02 148 $define|true|[Yy])
149
150 case "$optimize" in
151 "") optimize="-g -O" ;;
152 esac
153 ld="$cc"
154 cccdlflags='-fPIC'
155 lddlflags='-shared'
156 ;;
157
158 *) # HP's compiler cannot combine -g and -O
159 case "$optimize" in
160 "") optimize="-O" ;;
161 esac
162 ld=/usr/bin/ld
163 cccdlflags='+Z'
164 lddlflags='-b'
165 ;;
b36fec95 166 esac
8e07c86e 167
8ebc5c01 168
1dc48e02 169## LARGEFILES
774d564b 170
1dc48e02 171case "$uselargefiles-$ccisgcc" in
172 "$define-$define"|'-define')
173 cat <<EOM >&4
8e07c86e 174
1dc48e02 175*** I'm ignoring large files for this build because
176*** I don't know how to do use large files in HP-UX using gcc.
4137488c 177
1dc48e02 178EOM
179 uselargefiles="$undef"
180 ;;
181 esac
dc45a647 182
1dc48e02 183cat >UU/uselargefiles.cbu <<'EOCBU'
184# This script UU/uselargefiles.cbu will get 'called-back' by Configure
185# after it has prompted the user for whether to use large files.
186case "$uselargefiles" in
187 ""|$define|true|[yY]*)
188 # there are largefile flags available via getconf(1)
189 # but we cheat for now. (Keep that in the left margin.)
190ccflags_uselargefiles="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
5cf1d1f1 191
1dc48e02 192 ccflags="$ccflags $ccflags_uselargefiles"
193
194 if test -z "$ccisgcc" -a -z "$gccversion"; then
195 # The strict ANSI mode (-Aa) doesn't like large files.
196 ccflags=`echo " $ccflags "|sed 's@ -Aa @ @g'`
197 case "$ccflags" in
198 *-Ae*) ;;
199 *) ccflags="$ccflags -Ae" ;;
200 esac
fa2879fb 201 fi
202 ;;
203 esac
1dc48e02 204EOCBU
fa2879fb 205
1dc48e02 206# THREADING
104d25b7 207
208# This script UU/usethreads.cbu will get 'called-back' by Configure
209# after it has prompted the user for whether to use threads.
1dc48e02 210cat >UU/usethreads.cbu <<'EOCBU'
104d25b7 211case "$usethreads" in
1dc48e02 212 $define|true|[yY]*)
213 if [ "$xxOsRevMajor" -lt 10 ]; then
214 cat <<EOM >&4
f1ee07ac 215
104d25b7 216HP-UX $xxOsRevMajor cannot support POSIX threads.
217Consider upgrading to at least HP-UX 11.
218Cannot continue, aborting.
219EOM
1dc48e02 220 exit 1
221 fi
222
223 if [ "$xxOsRevMajor" -eq 10 ]; then
224 # Under 10.X, a threaded perl can be built
225 if [ -f /usr/include/pthread.h ]; then
c7d9b096 226 if [ -f /usr/lib/libcma.sl ]; then
227 # DCE (from Core OS CD) is installed
228
1dc48e02 229 # It needs # libcma and OLD_PTHREADS_API. Also
230 # <pthread.h> needs to be #included before any
231 # other includes (in perl.h)
c7d9b096 232
233 # HP-UX 10.X uses the old pthreads API
234 d_oldpthreads="$define"
235
236 # include libcma before all the others
237 libswanted="cma $libswanted"
238
1dc48e02 239 # tell perl.h to include <pthread.h> before other
240 # include files
c7d9b096 241 ccflags="$ccflags -DPTHREAD_H_FIRST"
242
1dc48e02 243 # CMA redefines select to cma_select, and cma_select
244 # expects int * instead of fd_set * (just like 9.X)
c7d9b096 245 selecttype='int *'
246
247 elif [ -f /usr/lib/libpthread.sl ]; then
248 # PTH package is installed
249 libswanted="pthread $libswanted"
250 else
251 libswanted="no_threads_available"
252 fi
253 else
254 libswanted="no_threads_available"
255 fi
256
1dc48e02 257 if [ $libswanted = "no_threads_available" ]; then
258 cat <<EOM >&4
f1ee07ac 259
104d25b7 260In HP-UX 10.X for POSIX threads you need both of the files
c7d9b096 261/usr/include/pthread.h and either /usr/lib/libcma.sl or /usr/lib/libpthread.sl.
262Either you must upgrade to HP-UX 11 or install a posix thread library:
f1ee07ac 263
264 DCE-CoreTools from HP-UX 10.20 Hardware Extensions 3.0 CD (B3920-13941)
265
266or
267
1dc48e02 268 PTH package from e.g. http://hpux.tn.tudelft.nl/hppd/hpux/alpha.html
f1ee07ac 269
104d25b7 270Cannot continue, aborting.
271EOM
1dc48e02 272 exit 1
c7d9b096 273 fi
1dc48e02 274 else
275 # 12 may want upping the _POSIX_C_SOURCE datestamp...
276 ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags"
277 set `echo X "$libswanted "| sed -e 's/ c / pthread c /'`
278 shift
279 libswanted="$*"
280 fi
104d25b7 281
227c31c3 282 usemymalloc='n'
104d25b7 283 ;;
1dc48e02 284 esac
bd9b35c9 285EOCBU