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