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