Add explanatory comment about fitting into a size_t.
[openssl.git] / config
1 #!/bin/sh
2 # Copyright 1998-2017 The OpenSSL Project Authors. All Rights Reserved.
3 #
4 # Licensed under the OpenSSL license (the "License").  You may not use
5 # this file except in compliance with the License.  You can obtain a copy
6 # in the file LICENSE in the source distribution or at
7 # https://www.openssl.org/source/license.html
8
9 # OpenSSL config: determine the operating system and run ./Configure
10 # Derived from minarch and GuessOS from Apache.
11 #
12 # Do "config -h" for usage information.
13 SUFFIX=""
14 DRYRUN="false"
15 VERBOSE="false"
16 EXE=""
17 THERE=`dirname $0`
18
19 # pick up any command line args to config
20 for i
21 do
22 case "$i" in 
23 -d*) options=$options" --debug";;
24 -t*) DRYRUN="true" VERBOSE="true";;
25 -v*) VERBOSE="true";;
26 -h*) DRYRUN="true"; cat <<EOF
27 Usage: config [options]
28  -d     Build with debugging when possible.
29  -t     Test mode, do not run the Configure perl script.
30  -v     Verbose mode, show the exact Configure call that is being made.
31  -h     This help.
32
33 Any other text will be passed to the Configure perl script.
34 See INSTALL for instructions.
35
36 EOF
37 ;;
38 *) options=$options" $i" ;;
39 esac
40 done
41
42 # First get uname entries that we use below
43
44 [ "$MACHINE" ] || MACHINE=`(uname -m) 2>/dev/null` || MACHINE="unknown"
45 [ "$RELEASE" ] || RELEASE=`(uname -r) 2>/dev/null` || RELEASE="unknown"
46 [ "$SYSTEM" ] || SYSTEM=`(uname -s) 2>/dev/null`  || SYSTEM="unknown"
47 [ "$BUILD" ] || VERSION=`(uname -v) 2>/dev/null` || VERSION="unknown"
48
49
50 # Now test for ISC and SCO, since it is has a braindamaged uname.
51 #
52 # We need to work around FreeBSD 1.1.5.1 
53 (
54 XREL=`uname -X 2>/dev/null | grep "^Release" | awk '{print $3}'`
55 if [ "x$XREL" != "x" ]; then
56     if [ -f /etc/kconfig ]; then
57         case "$XREL" in
58             4.0|4.1)
59                     echo "${MACHINE}-whatever-isc4"; exit 0
60                 ;;
61         esac
62     else
63         case "$XREL" in
64             3.2v4.2)
65                 echo "whatever-whatever-sco3"; exit 0
66                 ;;
67             3.2v5.0*)
68                 echo "whatever-whatever-sco5"; exit 0
69                 ;;
70             4.2MP)
71                 case "x${VERSION}" in
72                     x2.0*) echo "whatever-whatever-unixware20"; exit 0 ;;
73                     x2.1*) echo "whatever-whatever-unixware21"; exit 0 ;;
74                     x2*)   echo "whatever-whatever-unixware2";  exit 0 ;;
75                 esac
76                 ;;
77             4.2)
78                 echo "whatever-whatever-unixware1"; exit 0
79                 ;;
80             5*)
81                 case "x${VERSION}" in
82                     # We hardcode i586 in place of ${MACHINE} for the
83                     # following reason. The catch is that even though Pentium
84                     # is minimum requirement for platforms in question,
85                     # ${MACHINE} gets always assigned to i386. Now, problem
86                     # with i386 is that it makes ./config pass 386 to
87                     # ./Configure, which in turn makes make generate
88                     # inefficient SHA-1 (for this moment) code.
89                     x[678]*)  echo "i586-sco-unixware7"; exit 0 ;;
90                 esac
91                 ;;
92         esac
93     fi
94 fi
95 # Now we simply scan though... In most cases, the SYSTEM info is enough
96 #
97 case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
98     A/UX:*)
99         echo "m68k-apple-aux3"; exit 0
100         ;;
101
102     AIX:[3-9]:4:*)
103         echo "${MACHINE}-ibm-aix"; exit 0
104         ;;
105
106     AIX:*:[5-9]:*)
107         echo "${MACHINE}-ibm-aix"; exit 0
108         ;;
109
110     AIX:*)
111         echo "${MACHINE}-ibm-aix3"; exit 0
112         ;;
113
114     HI-UX:*)
115         echo "${MACHINE}-hi-hiux"; exit 0
116         ;;
117
118     HP-UX:*)
119         HPUXVER=`echo ${RELEASE}|sed -e 's/[^.]*.[0B]*//'`
120         case "$HPUXVER" in
121             1[0-9].*)   # HPUX 10 and 11 targets are unified
122                 echo "${MACHINE}-hp-hpux1x"; exit 0
123                 ;;
124             *)
125                 echo "${MACHINE}-hp-hpux"; exit 0
126                 ;;
127         esac
128         ;;
129
130     IRIX:6.*)
131         echo "mips3-sgi-irix"; exit 0
132         ;;
133
134     IRIX64:*)
135         echo "mips4-sgi-irix64"; exit 0
136         ;;
137
138     Linux:[2-9].*)
139         echo "${MACHINE}-whatever-linux2"; exit 0
140         ;;
141
142     Linux:1.*)
143         echo "${MACHINE}-whatever-linux1"; exit 0
144         ;;
145
146     GNU*)
147         echo "hurd-x86"; exit 0;
148         ;;
149
150     LynxOS:*)
151         echo "${MACHINE}-lynx-lynxos"; exit 0
152         ;;
153
154     BSD/OS:4.*)  # BSD/OS always says 386
155         echo "i486-whatever-bsdi4"; exit 0
156         ;;
157
158     BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
159         case `/sbin/sysctl -n hw.model` in
160             Pentium*)
161                 echo "i586-whatever-bsdi"; exit 0
162                 ;;
163             *)
164                 echo "i386-whatever-bsdi"; exit 0
165                 ;;
166             esac;
167         ;;
168
169     BSD/386:*|BSD/OS:*)
170         echo "${MACHINE}-whatever-bsdi"; exit 0
171         ;;
172
173     FreeBSD:*:*:*386*)
174         VERS=`echo ${RELEASE} | sed -e 's/[-(].*//'`
175         MACH=`sysctl -n hw.model`
176         ARCH='whatever'
177         case ${MACH} in
178            *386*       ) MACH="i386"     ;;
179            *486*       ) MACH="i486"     ;;
180            Pentium\ II*) MACH="i686"     ;;
181            Pentium*    ) MACH="i586"     ;;
182            *           ) MACH="$MACHINE" ;;
183         esac
184         case ${MACH} in
185            i[0-9]86 ) ARCH="pc" ;;
186         esac
187         echo "${MACH}-${ARCH}-freebsd${VERS}"; exit 0
188         ;;
189
190     DragonFly:*)
191         echo "${MACHINE}-whatever-dragonfly"; exit 0
192         ;;
193
194     FreeBSD:*)
195         echo "${MACHINE}-whatever-freebsd"; exit 0
196         ;;
197
198     Haiku:*)
199         echo "${MACHINE}-whatever-haiku"; exit 0
200         ;;
201
202     NetBSD:*:*:*386*)
203         echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
204         ;;
205
206     NetBSD:*)
207         echo "${MACHINE}-whatever-netbsd"; exit 0
208         ;;
209
210     OpenBSD:*)
211         echo "${MACHINE}-whatever-openbsd"; exit 0
212         ;;
213
214     OpenUNIX:*)
215         echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
216         ;;
217
218     OSF1:*:*:*alpha*)
219         OSFMAJOR=`echo ${RELEASE}| sed -e 's/^V\([0-9]*\)\..*$/\1/'`
220         case "$OSFMAJOR" in
221             4|5)
222                 echo "${MACHINE}-dec-tru64"; exit 0
223                 ;;
224             1|2|3)
225                 echo "${MACHINE}-dec-osf"; exit 0
226                 ;;
227             *)
228                 echo "${MACHINE}-dec-osf"; exit 0
229                 ;;
230         esac
231         ;;
232
233     QNX:*)
234         case "$RELEASE" in
235             4*)
236                 echo "${MACHINE}-whatever-qnx4"
237                 ;;
238             6*)
239                 echo "${MACHINE}-whatever-qnx6"
240                 ;;
241             *)
242                 echo "${MACHINE}-whatever-qnx"
243                 ;;
244         esac
245         exit 0
246         ;;
247
248     Paragon*:*:*:*)
249         echo "i860-intel-osf1"; exit 0
250         ;;
251
252     Rhapsody:*)
253         echo "ppc-apple-rhapsody"; exit 0
254         ;;
255
256     Darwin:*)
257         case "$MACHINE" in
258             Power*)
259                 echo "ppc-apple-darwin${VERSION}"
260                 ;;
261             x86_64)
262                 echo "x86_64-apple-darwin${VERSION}"
263                 ;;
264             *)
265                 echo "i686-apple-darwin${VERSION}"
266                 ;;
267         esac
268         exit 0
269         ;;
270
271     SunOS:5.*)
272         echo "${MACHINE}-whatever-solaris2"; exit 0
273         ;;
274
275     SunOS:*)
276         echo "${MACHINE}-sun-sunos4"; exit 0
277         ;;
278
279     UNIX_System_V:4.*:*)
280         echo "${MACHINE}-whatever-sysv4"; exit 0
281         ;;
282
283     VOS:*:*:i786)
284      echo "i386-stratus-vos"; exit 0
285      ;;
286
287     VOS:*:*:*)
288      echo "hppa1.1-stratus-vos"; exit 0
289      ;;
290
291     *:4*:R4*:m88k)
292         echo "${MACHINE}-whatever-sysv4"; exit 0
293         ;;
294
295     DYNIX/ptx:4*:*)
296         echo "${MACHINE}-whatever-sysv4"; exit 0
297         ;;
298
299     *:4.0:3.0:3[34]?? | *:4.0:3.0:3[34]??,*)
300         echo "i486-ncr-sysv4"; exit 0
301         ;;
302
303     ULTRIX:*)
304         echo "${MACHINE}-unknown-ultrix"; exit 0
305         ;;
306
307     POSIX-BC*)
308         echo "${MACHINE}-siemens-sysv4"; exit 0   # Here, $MACHINE == "BS2000"
309         ;;
310
311     machten:*)
312        echo "${MACHINE}-tenon-${SYSTEM}"; exit 0;
313        ;;
314
315     library:*)
316         echo "${MACHINE}-ncr-sysv4"; exit 0
317         ;;
318
319     ConvexOS:*:11.0:*)
320         echo "${MACHINE}-v11-${SYSTEM}"; exit 0;
321         ;;
322
323     # The following combinations are supported
324     # MINGW64* on x86_64 => mingw64
325     # MINGW32* on x86_64 => mingw
326     # MINGW32* on i?86 => mingw
327     #
328     # MINGW64* on i?86 isn't expected to work...
329     MINGW64*:*:*:x86_64)
330         echo "${MACHINE}-whatever-mingw64"; exit 0;
331         ;;
332     MINGW*)
333         echo "${MACHINE}-whatever-mingw"; exit 0;
334         ;;
335     CYGWIN*)
336         echo "${MACHINE}-pc-cygwin"; exit 0
337         ;;
338
339     vxworks*)
340        echo "${MACHINE}-whatever-vxworks"; exit 0;
341        ;;
342 esac
343
344 #
345 # Ugg. These are all we can determine by what we know about
346 # the output of uname. Be more creative:
347 #
348
349 # Do the Apollo stuff first. Here, we just simply assume
350 # that the existence of the /usr/apollo directory is proof
351 # enough
352 if [ -d /usr/apollo ]; then
353     echo "whatever-apollo-whatever"
354     exit 0
355 fi
356
357 # Now NeXT
358 ISNEXT=`hostinfo 2>/dev/null`
359 case "$ISNEXT" in
360     *'NeXT Mach 3.3'*)
361         echo "whatever-next-nextstep3.3"; exit 0
362         ;;
363     *NeXT*)
364         echo "whatever-next-nextstep"; exit 0
365         ;;
366 esac
367
368 # At this point we gone through all the one's
369 # we know of: Punt
370
371 echo "${MACHINE}-whatever-${SYSTEM}" 
372 exit 0
373 ) 2>/dev/null | (
374
375 # ---------------------------------------------------------------------------
376 # this is where the translation occurs into SSLeay terms
377 # ---------------------------------------------------------------------------
378
379 # Only set CC if not supplied already
380 if [ -z "$CROSS_COMPILE$CC" ]; then
381   GCCVER=`sh -c "gcc -dumpversion" 2>/dev/null`
382   if [ "$GCCVER" != "" ]; then
383     # then strip off whatever prefix egcs prepends the number with...
384     # Hopefully, this will work for any future prefixes as well.
385     GCCVER=`echo $GCCVER | LC_ALL=C sed 's/^[a-zA-Z]*\-//'`
386     # Since gcc 3.1 gcc --version behaviour has changed.  gcc -dumpversion
387     # does give us what we want though, so we use that.  We just just the
388     # major and minor version numbers.
389     # peak single digit before and after first dot, e.g. 2.95.1 gives 29
390     GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'`
391     CC=gcc
392   else
393     CC=cc
394   fi
395 fi
396 GCCVER=${GCCVER:-0}
397 if [ "$SYSTEM" = "HP-UX" ];then
398   # By default gcc is a ILP32 compiler (with long long == 64).
399   GCC_BITS="32"
400   if [ $GCCVER -ge 30 ]; then
401     # PA64 support only came in with gcc 3.0.x.
402     # We check if the preprocessor symbol __LP64__ is defined...
403     if echo "__LP64__" | gcc -v -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null; then
404       : # __LP64__ has slipped through, it therefore is not defined
405     else
406       GCC_BITS="64"
407     fi
408   fi
409 fi
410 if [ "$SYSTEM" = "SunOS" ]; then
411   if [ $GCCVER -ge 30 ]; then
412     # 64-bit ABI isn't officially supported in gcc 3.0, but it appears
413     # to be working, at the very least 'make test' passes...
414     if gcc -v -E -x c /dev/null 2>&1 | grep __arch64__ > /dev/null; then
415       GCC_ARCH="-m64"
416     else
417       GCC_ARCH="-m32"
418     fi
419   fi
420   # check for WorkShop C, expected output is "cc: blah-blah C x.x"
421   CCVER=`(cc -V 2>&1) 2>/dev/null | \
422         egrep -e '^cc: .* C [0-9]\.[0-9]' | \
423         sed 's/.* C \([0-9]\)\.\([0-9]\).*/\1\2/'`
424   CCVER=${CCVER:-0}
425   if [ $MACHINE != i86pc -a $CCVER -gt 40 ]; then
426     CC=cc       # overrides gcc!!!
427     if [ $CCVER -eq 50 ]; then
428       echo "WARNING! Detected WorkShop C 5.0. Do make sure you have"
429       echo "         patch #107357-01 or later applied."
430       sleep 5
431     fi
432   fi
433 fi
434
435 if [ "${SYSTEM}" = "AIX" ]; then        # favor vendor cc over gcc
436     (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
437 fi
438
439 CCVER=${CCVER:-0}
440
441 # read the output of the embedded GuessOS 
442 read GUESSOS
443
444 echo Operating system: $GUESSOS
445
446 # now map the output into SSLeay terms ... really should hack into the
447 # script above so we end up with values in vars but that would take
448 # more time that I want to waste at the moment
449 case "$GUESSOS" in
450   uClinux*64*)
451     OUT=uClinux-dist64
452         ;;
453   uClinux*)
454     OUT=uClinux-dist
455         ;;
456   mips3-sgi-irix)
457         #CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
458         #CPU=${CPU:-0}
459         #if [ $CPU -ge 5000 ]; then
460         #       options="$options -mips4"
461         #else
462         #       options="$options -mips3"
463         #fi
464         OUT="irix-mips3-$CC"
465         ;;
466   mips4-sgi-irix64)
467         echo "WARNING! If you wish to build 64-bit library, then you have to"
468         echo "         invoke '$THERE/Configure irix64-mips4-$CC' *manually*."
469         if [ "$DRYRUN" = "false" -a -t 1 ]; then
470           echo "         You have about 5 seconds to press Ctrl-C to abort."
471           (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
472         fi
473         #CPU=`(hinv -t cpu) 2>/dev/null | head -1 | sed 's/^CPU:[^R]*R\([0-9]*\).*/\1/'`
474         #CPU=${CPU:-0}
475         #if [ $CPU -ge 5000 ]; then
476         #        options="$options -mips4"
477         #else
478         #        options="$options -mips3"
479         #fi
480         OUT="irix-mips3-$CC"
481         ;;
482   ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
483   ppc-apple-darwin*)
484         ISA64=`(sysctl -n hw.optional.64bitops) 2>/dev/null`
485         if [ "$ISA64" = "1" -a -z "$KERNEL_BITS" ]; then
486             echo "WARNING! If you wish to build 64-bit library, then you have to"
487             echo "         invoke '$THERE/Configure darwin64-ppc-cc' *manually*."
488             if [ "$DRYRUN" = "false" -a -t 1 ]; then
489               echo "         You have about 5 seconds to press Ctrl-C to abort."
490               (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
491             fi
492         fi
493         if [ "$ISA64" = "1" -a "$KERNEL_BITS" = "64" ]; then
494             OUT="darwin64-ppc-cc"
495         else
496             OUT="darwin-ppc-cc"
497         fi ;;
498   i?86-apple-darwin*)
499         ISA64=`(sysctl -n hw.optional.x86_64) 2>/dev/null`
500         if [ "$ISA64" = "1" -a -z "$KERNEL_BITS" ]; then
501             echo "WARNING! If you wish to build 64-bit library, then you have to"
502             echo "         invoke 'KERNEL_BITS=64 $THERE/config $options'."
503             if [ "$DRYRUN" = "false" -a -t 1 ]; then
504               echo "         You have about 5 seconds to press Ctrl-C to abort."
505               (trap "stty `stty -g`; exit 1" 2; stty -icanon min 0 time 50; read waste; exit 0) <&1 || exit
506             fi
507         fi
508         if [ "$ISA64" = "1" -a "$KERNEL_BITS" = "64" ]; then
509             OUT="darwin64-x86_64-cc"
510         else
511             OUT="darwin-i386-cc"
512         fi ;;
513   x86_64-apple-darwin*)
514         if [ "$KERNEL_BITS" = "32" ]; then
515             OUT="darwin-i386-cc"
516         else
517             OUT="darwin64-x86_64-cc"
518         fi ;;
519   armv6+7-*-iphoneos)
520         options="$options -arch%20armv6 -arch%20armv7"
521         OUT="iphoneos-cross" ;;
522   *-*-iphoneos)
523         options="$options -arch%20${MACHINE}"
524         OUT="iphoneos-cross" ;;
525   arm64-*-iphoneos|*-*-ios64)
526         OUT="ios64-cross" ;;
527   alpha-*-linux2)
528         ISA=`awk '/cpu model/{print$4;exit(0);}' /proc/cpuinfo`
529         case ${ISA:-generic} in
530         *[678]) OUT="linux-alpha+bwx-$CC" ;;
531         *)      OUT="linux-alpha-$CC" ;;
532         esac
533         if [ "$CC" = "gcc" ]; then
534             case ${ISA:-generic} in
535             EV5|EV45)           options="$options -mcpu=ev5";;
536             EV56|PCA56)         options="$options -mcpu=ev56";;
537             *)                  options="$options -mcpu=ev6";;
538             esac
539         fi
540         ;;
541   ppc64-*-linux2)
542         if [ -z "$KERNEL_BITS" ]; then
543             echo "WARNING! If you wish to build 64-bit library, then you have to"
544             echo "         invoke '$THERE/Configure linux-ppc64' *manually*."
545             if [ "$DRYRUN" = "false" -a -t 1 ]; then
546                 echo "         You have about 5 seconds to press Ctrl-C to abort."
547                 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
548             fi
549         fi
550         if [ "$KERNEL_BITS" = "64" ]; then
551             OUT="linux-ppc64"
552         else
553             OUT="linux-ppc"
554             (echo "__LP64__" | gcc -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null) || options="$options -m32"
555         fi
556         ;;
557   ppc64le-*-linux2) OUT="linux-ppc64le" ;;
558   ppc-*-linux2) OUT="linux-ppc" ;;
559   mips64*-*-linux2)
560         echo "WARNING! If you wish to build 64-bit library, then you have to"
561         echo "         invoke '$THERE/Configure linux64-mips64' *manually*."
562         if [ "$DRYRUN" = "false" -a -t 1 ]; then
563             echo "         You have about 5 seconds to press Ctrl-C to abort."
564             (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
565         fi
566         OUT="linux-mips64"
567         ;;
568   mips*-*-linux2) OUT="linux-mips32" ;;
569   ppc60x-*-vxworks*) OUT="vxworks-ppc60x" ;;
570   ppcgen-*-vxworks*) OUT="vxworks-ppcgen" ;;
571   pentium-*-vxworks*) OUT="vxworks-pentium" ;;
572   simlinux-*-vxworks*) OUT="vxworks-simlinux" ;;
573   mips-*-vxworks*) OUT="vxworks-mips";;
574   ia64-*-linux?) OUT="linux-ia64" ;;
575   sparc64-*-linux2)
576         echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
577         echo "         and wish to build 64-bit library, then you have to"
578         echo "         invoke '$THERE/Configure linux64-sparcv9' *manually*."
579         if [ "$DRYRUN" = "false" -a -t 1 ]; then
580           echo "          You have about 5 seconds to press Ctrl-C to abort."
581           (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
582         fi
583         OUT="linux-sparcv9" ;;
584   sparc-*-linux2)
585         KARCH=`awk '/^type/{print$3;exit(0);}' /proc/cpuinfo`
586         case ${KARCH:-sun4} in
587         sun4u*) OUT="linux-sparcv9" ;;
588         sun4m)  OUT="linux-sparcv8" ;;
589         sun4d)  OUT="linux-sparcv8" ;;
590         *)      OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
591         esac ;;
592   parisc*-*-linux2)
593         # 64-bit builds under parisc64 linux are not supported and
594         # compiler is expected to generate 32-bit objects...
595         CPUARCH=`awk '/cpu family/{print substr($5,1,3); exit(0);}' /proc/cpuinfo`
596         CPUSCHEDULE=`awk '/^cpu.[       ]*: PA/{print substr($3,3); exit(0);}' /proc/cpuinfo`
597
598         # ??TODO ??  Model transformations
599         # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
600         #    assuming no further arch. identification will ever be used by GCC.
601         # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
602         # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
603         #    for these chips in the future.
604         #         PA7300LC -> 7100LC (1.1)
605         #         PA8200   -> 8000   (2.0)
606         #         PA8500   -> 8000   (2.0)
607         #         PA8600   -> 8000   (2.0)
608
609         CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8.00/8000/'`
610         # Finish Model transformations
611
612         options="$options -DB_ENDIAN -mschedule=$CPUSCHEDULE -march=$CPUARCH"
613         OUT="linux-generic32" ;;
614   armv[1-3]*-*-linux2) OUT="linux-generic32" ;;
615   armv[7-9]*-*-linux2) OUT="linux-armv4"; options="$options -march=armv7-a" ;;
616   arm*-*-linux2) OUT="linux-armv4" ;;
617   aarch64-*-linux2) OUT="linux-aarch64" ;;
618   sh*b-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
619   sh*-*-linux2)  OUT="linux-generic32"; options="$options -DL_ENDIAN" ;;
620   m68k*-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
621   s390-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
622   s390x-*-linux2)
623         # To be uncommented when glibc bug is fixed, see Configure...
624         #if egrep -e '^features.* highgprs' /proc/cpuinfo >/dev/null ; then
625         #  echo "WARNING! If you wish to build \"highgprs\" 32-bit library, then you"
626         #  echo "         have to invoke './Configure linux32-s390x' *manually*."
627         #  if [ "$DRYRUN" = "false" -a -t -1 ]; then
628         #    echo "         You have about 5 seconds to press Ctrl-C to abort."
629         #    (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
630         #  fi
631         #fi
632         OUT="linux64-s390x"
633         ;;
634   x86_64-*-linux?)
635         if $CC -dM -E -x c /dev/null 2>&1 | grep -q ILP32 > /dev/null; then
636             OUT="linux-x32"
637         else
638             OUT="linux-x86_64"
639         fi ;;
640   *86-*-linux2)
641         # On machines where the compiler understands -m32, prefer a
642         # config target that uses it
643         if $CC -m32 -E -x c /dev/null > /dev/null 2>&1; then
644             OUT="linux-x86"
645         else
646             OUT="linux-elf"
647         fi ;;
648   *86-*-linux1) OUT="linux-aout" ;;
649   *-*-linux?) OUT="linux-generic32" ;;
650   sun4[uv]*-*-solaris2)
651         OUT="solaris-sparcv9-$CC"
652         ISA64=`(isainfo) 2>/dev/null | grep sparcv9`
653         if [ "$ISA64" != "" -a "$KERNEL_BITS" = "" ]; then
654             if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
655                 echo "WARNING! If you wish to build 64-bit library, then you have to"
656                 echo "         invoke '$THERE/Configure solaris64-sparcv9-cc' *manually*."
657                 if [ "$DRYRUN" = "false" -a -t 1 ]; then
658                   echo "         You have about 5 seconds to press Ctrl-C to abort."
659                   (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
660                 fi
661             elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
662                 # $GCC_ARCH denotes default ABI chosen by compiler driver
663                 # (first one found on the $PATH). I assume that user
664                 # expects certain consistency with the rest of his builds
665                 # and therefore switch over to 64-bit. <appro>
666                 OUT="solaris64-sparcv9-gcc"
667                 echo "WARNING! If you wish to build 32-bit library, then you have to"
668                 echo "         invoke '$THERE/Configure solaris-sparcv9-gcc' *manually*."
669                 if [ "$DRYRUN" = "false" -a -t 1 ]; then
670                   echo "         You have about 5 seconds to press Ctrl-C to abort."
671                   (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
672                 fi
673             elif [ "$GCC_ARCH" = "-m32" ]; then
674                 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
675                 echo "        and wish to build 64-bit library, then you have to"
676                 echo "        invoke '$THERE/Configure solaris64-sparcv9-gcc' *manually*."
677                 if [ "$DRYRUN" = "false" -a -t 1 ]; then
678                   echo "         You have about 5 seconds to press Ctrl-C to abort."
679                   (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
680                 fi
681             fi
682         fi
683         if [ "$ISA64" != "" -a "$KERNEL_BITS" = "64" ]; then
684             OUT="solaris64-sparcv9-$CC"
685         fi
686         ;;
687   sun4m-*-solaris2)     OUT="solaris-sparcv8-$CC" ;;
688   sun4d-*-solaris2)     OUT="solaris-sparcv8-$CC" ;;
689   sun4*-*-solaris2)     OUT="solaris-sparcv7-$CC" ;;
690   *86*-*-solaris2)
691         ISA64=`(isainfo) 2>/dev/null | grep amd64`
692         if [ "$ISA64" != "" -a ${KERNEL_BITS:-64} -eq 64 ]; then
693             OUT="solaris64-x86_64-$CC"
694         else
695             OUT="solaris-x86-$CC"
696             if [ `uname -r | sed -e 's/5\.//'` -lt 10 ]; then
697                 options="$options no-sse2"
698             fi
699         fi
700         ;;
701   *-*-sunos4)           OUT="sunos-$CC" ;;
702
703   *86*-*-bsdi4)         OUT="BSD-x86-elf"; options="$options no-sse2 -ldl" ;;
704   alpha*-*-*bsd*)       OUT="BSD-generic64"; options="$options -DL_ENDIAN" ;;
705   powerpc64-*-*bsd*)    OUT="BSD-generic64"; options="$options -DB_ENDIAN" ;;
706   sparc64-*-*bsd*)      OUT="BSD-sparc64" ;;
707   ia64-*-*bsd*)         OUT="BSD-ia64" ;;
708   x86_64-*-dragonfly*)  OUT="BSD-x86_64" ;;
709   amd64-*-*bsd*)        OUT="BSD-x86_64" ;;
710   *86*-*-*bsd*)         # mimic ld behaviour when it's looking for libc...
711                         if [ -L /usr/lib/libc.so ]; then        # [Free|Net]BSD
712                             libc=/usr/lib/libc.so
713                         else                                    # OpenBSD
714                             # ld searches for highest libc.so.* and so do we
715                             libc=`(ls /usr/lib/libc.so.* /lib/libc.so.* | tail -1) 2>/dev/null`
716                         fi
717                         case "`(file -L $libc) 2>/dev/null`" in
718                         *ELF*)  OUT="BSD-x86-elf" ;;
719                         *)      OUT="BSD-x86"; options="$options no-sse2" ;;
720                         esac ;;
721   *-*-*bsd*)            OUT="BSD-generic32" ;;
722
723   x86_64-*-haiku)       OUT="haiku-x86_64" ;;
724   *-*-haiku)            OUT="haiku-x86" ;;
725
726   *-*-osf)              OUT="osf1-alpha-cc" ;;
727   *-*-tru64)            OUT="tru64-alpha-cc" ;;
728   *-*-[Uu]nix[Ww]are7)
729         if [ "$CC" = "gcc" ]; then
730           OUT="unixware-7-gcc" ; options="$options no-sse2"
731         else    
732           OUT="unixware-7" ; options="$options no-sse2 -D__i386__"
733         fi
734         ;;
735   *-*-[Uu]nix[Ww]are20*) OUT="unixware-2.0"; options="$options no-sse2 no-sha512" ;;
736   *-*-[Uu]nix[Ww]are21*) OUT="unixware-2.1"; options="$options no-sse2 no-sha512" ;;
737   *-*-vos)
738         options="$options no-threads no-shared no-asm no-dso"
739         EXE=".pm"
740         OUT="vos-$CC" ;;
741   BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
742   *-hpux1*)
743         if [ $CC = "gcc" -a $GCC_BITS = "64" ]; then
744             OUT="hpux64-parisc2-gcc"
745         fi
746         [ "$KERNEL_BITS" ] || KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
747         KERNEL_BITS=${KERNEL_BITS:-32}
748         CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
749         CPU_VERSION=${CPU_VERSION:-0}
750         # See <sys/unistd.h> for further info on CPU_VERSION.
751         if   [ $CPU_VERSION -ge 768 ]; then     # IA-64 CPU
752              if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
753                 OUT="hpux64-ia64-cc"
754              else
755                 OUT="hpux-ia64-cc"
756              fi
757         elif [ $CPU_VERSION -ge 532 ]; then     # PA-RISC 2.x CPU
758              OUT=${OUT:-"hpux-parisc2-${CC}"}
759              if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
760                 echo "WARNING! If you wish to build 64-bit library then you have to"
761                 echo "         invoke '$THERE/Configure hpux64-parisc2-cc' *manually*."
762                 if [ "$DRYRUN" = "false" -a -t 1 ]; then
763                   echo "         You have about 5 seconds to press Ctrl-C to abort."
764                   (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
765                 fi
766              fi
767              # PA-RISC 2.0 is no longer supported as separate 32-bit
768              # target. This is compensated for by run-time detection
769              # in most critical assembly modules and taking advantage
770              # of 2.0 architecture in PA-RISC 1.1 build.
771              OUT="hpux-parisc1_1-${CC}"
772         elif [ $CPU_VERSION -ge 528 ]; then     # PA-RISC 1.1+ CPU
773              OUT="hpux-parisc1_1-${CC}"
774         elif [ $CPU_VERSION -ge 523 ]; then     # PA-RISC 1.0 CPU
775              OUT="hpux-parisc-${CC}"
776         else                                    # Motorola(?) CPU
777              OUT="hpux-$CC"
778         fi
779         options="$options -D_REENTRANT" ;;
780   *-hpux)       OUT="hpux-parisc-$CC" ;;
781   *-aix)
782         [ "$KERNEL_BITS" ] || KERNEL_BITS=`(getconf KERNEL_BITMODE) 2>/dev/null`
783         KERNEL_BITS=${KERNEL_BITS:-32}
784         OBJECT_MODE=${OBJECT_MODE:-32}
785         if [ "$CC" = "gcc" ]; then
786             OUT="aix-gcc"
787           if [ $OBJECT_MODE -eq 64 ]; then
788             echo 'Your $OBJECT_MODE was found to be set to 64'
789             OUT="aix64-gcc"
790           fi
791         elif [ $OBJECT_MODE -eq 64 ]; then
792             echo 'Your $OBJECT_MODE was found to be set to 64' 
793             OUT="aix64-cc"
794         else
795             OUT="aix-cc"
796             if [ $KERNEL_BITS -eq 64 ]; then
797                 echo "WARNING! If you wish to build 64-bit kit, then you have to"
798                 echo "         invoke '$THERE/Configure aix64-cc' *manually*."
799                 if [ "$DRYRUN" = "false" -a -t 1 ]; then
800                     echo "         You have ~5 seconds to press Ctrl-C to abort."
801                     (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
802                 fi
803             fi
804         fi
805         if (lsattr -E -O -l `lsdev -c processor|awk '{print$1;exit}'` | grep -i powerpc) >/dev/null 2>&1; then
806             :   # this applies even to Power3 and later, as they return PowerPC_POWER[345]
807         else
808             options="$options no-asm"
809         fi
810         ;;
811   # these are all covered by the catchall below
812   i[3456]86-*-cygwin) OUT="Cygwin-x86" ;;
813   *-*-cygwin) OUT="Cygwin-${MACHINE}" ;;
814   x86pc-*-qnx6) OUT="QNX6-i386" ;;
815   *-*-qnx6) OUT="QNX6" ;;
816   x86-*-android|i?86-*-android) OUT="android-x86" ;;
817   armv[7-9]*-*-android)
818       OUT="android-armeabi"; options="$options -march=armv7-a" ;;
819   arm*-*-android) OUT="android-armeabi" ;;
820   *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
821 esac
822
823 # NB: This atalla support has been superseded by the ENGINE support
824 # That contains its own header and definitions anyway. Support can
825 # be enabled or disabled on any supported platform without external
826 # headers, eg. by adding the "hw-atalla" switch to ./config or
827 # perl Configure
828 #
829 # See whether we can compile Atalla support
830 #if [ -f /usr/include/atasi.h ]
831 #then
832 #  options="$options -DATALLA"
833 #fi
834
835 if [ -n "$CONFIG_OPTIONS" ]; then
836   options="$options $CONFIG_OPTIONS"
837 fi
838
839 if expr "$options" : '.*no\-asm' > /dev/null; then :; else
840   sh -c "$CROSS_COMPILE${CC:-gcc} -Wa,--help -c -o /tmp/null.$$.o -x assembler /dev/null && rm /tmp/null.$$.o" 2>&1 | \
841   grep \\--noexecstack >/dev/null && \
842   options="$options -Wa,--noexecstack"
843 fi
844
845 # gcc < 2.8 does not support -march=ultrasparc
846 if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
847 then
848   echo "WARNING! Falling down to 'solaris-sparcv8-gcc'."
849   echo "         Upgrade to gcc-2.8 or later."
850   sleep 5
851   OUT=solaris-sparcv8-gcc
852 fi
853 if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
854 then
855   echo "WARNING! Falling down to 'linux-sparcv8'."
856   echo "         Upgrade to gcc-2.8 or later."
857   sleep 5
858   OUT=linux-sparcv8
859 fi
860
861 case "$GUESSOS" in
862   i386-*) options="$options 386" ;;
863 esac
864
865 for i in aes aria bf camellia cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa seed sha
866 do
867   if [ ! -d $THERE/crypto/$i ]
868   then
869     options="$options no-$i"
870   fi
871 done
872
873 if [ -z "$OUT" ]; then
874   OUT="$CC"
875 fi
876
877 if [ ".$PERL" = . ] ; then
878         for i in . `echo $PATH | sed 's/:/ /g'`; do
879                 if [ -f "$i/perl5$EXE" ] ; then
880                         PERL="$i/perl5$EXE"
881                         break;
882                 fi;
883         done
884 fi
885
886 if [ ".$PERL" = . ] ; then
887         for i in . `echo $PATH | sed 's/:/ /g'`; do
888                 if [ -f "$i/perl$EXE" ] ; then
889                         if "$i/perl$EXE" -e 'exit($]<5.0)'; then
890                                 PERL="$i/perl$EXE"
891                                 break;
892                         fi;
893                 fi;
894         done
895 fi
896
897 if [ ".$PERL" = . ] ; then
898         echo "You need Perl 5."
899         exit 1
900 fi
901
902 # run Configure to check to see if we need to specify the 
903 # compiler for the platform ... in which case we add it on
904 # the end ... otherwise we leave it off
905
906 $PERL $THERE/Configure LIST | grep "$OUT-$CC" > /dev/null
907 if [ $? = "0" ]; then
908   OUT="$OUT-$CC"
909 fi
910
911 OUT="$OUT"
912
913 $PERL $THERE/Configure LIST | grep "$OUT" > /dev/null
914 if [ $? = "0" ]; then
915   if [ "$VERBOSE" = "true" ]; then
916     echo $PERL $THERE/Configure $OUT $options
917   fi  
918   if [ "$DRYRUN" = "false" ]; then
919     $PERL $THERE/Configure $OUT $options
920   fi
921 else
922   echo "This system ($OUT) is not supported. See file INSTALL for details."
923   exit 1
924 fi
925
926 if [ "$OUT" = "darwin64-x86_64-cc" ]; then
927     echo "WARNING! If you wish to build 32-bit libraries, then you have to"
928     echo "         invoke 'KERNEL_BITS=32 $THERE/config $options'."
929 fi
930 )