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