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