blob: c8886de4310797e10b19c0162b0ecdee64920e54 [file] [log] [blame]
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00001#!/bin/sh
Paulid42d0a42017-02-01 10:10:13 +10002# Copyright 1998-2017 The OpenSSL Project Authors. All Rights Reserved.
Ralf S. Engelschall58964a41998-12-21 10:56:39 +00003#
Rich Salz44c8a5e2016-06-01 11:26:40 -04004# 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
Ulf Möller5d3bb221999-04-22 19:23:56 +00009# OpenSSL config: determine the operating system and run ./Configure
Rich Salz44c8a5e2016-06-01 11:26:40 -040010# Derived from minarch and GuessOS from Apache.
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000011#
Rich Salz44c8a5e2016-06-01 11:26:40 -040012# Do "config -h" for usage information.
Ulf Möller06a2b072001-02-27 21:10:21 +000013SUFFIX=""
Richard Levitteffb261f2016-08-15 18:46:39 +020014DRYRUN="false"
15VERBOSE="false"
Richard Levitte28a80032004-06-28 22:01:37 +000016EXE=""
Richard Levitte9fe2bb72016-01-29 19:45:51 +010017THERE=`dirname $0`
Ulf Möller06a2b072001-02-27 21:10:21 +000018
19# pick up any command line args to config
20for i
21do
22case "$i" in
Richard Levitte9e43c6b2015-03-17 16:30:54 +010023-d*) options=$options" --debug";;
Richard Levitteffb261f2016-08-15 18:46:39 +020024-t*) DRYRUN="true" VERBOSE="true";;
25-v*) VERBOSE="true";;
26-h*) DRYRUN="true"; cat <<EOF
Ulf Möller06a2b072001-02-27 21:10:21 +000027Usage: config [options]
Richard Levitteb33c5ff2016-03-10 14:20:50 +010028 -d Build with debugging when possible.
Ulf Möller06a2b072001-02-27 21:10:21 +000029 -t Test mode, do not run the Configure perl script.
Richard Levitteffb261f2016-08-15 18:46:39 +020030 -v Verbose mode, show the exact Configure call that is being made.
Ulf Möller06a2b072001-02-27 21:10:21 +000031 -h This help.
32
33Any other text will be passed to the Configure perl script.
34See INSTALL for instructions.
35
36EOF
37;;
38*) options=$options" $i" ;;
39esac
40done
41
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000042# First get uname entries that we use below
43
Dr. Stephen Henson19a01922009-10-07 16:44:03 +000044[ "$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"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000048
Richard Levitte8f6dc9c2000-02-27 17:17:43 +000049
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000050# 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(
54XREL=`uname -X 2>/dev/null | grep "^Release" | awk '{print $3}'`
55if [ "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)
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000071 case "x${VERSION}" in
Andy Polyakov9abff962003-01-19 21:47:06 +000072 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 ;;
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000075 esac
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000076 ;;
77 4.2)
78 echo "whatever-whatever-unixware1"; exit 0
79 ;;
Andy Polyakov14cc0aa2005-06-26 18:06:38 +000080 5*)
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000081 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.
Andy Polyakov14cc0aa2005-06-26 18:06:38 +000089 x[678]*) echo "i586-sco-unixware7"; exit 0 ;;
Andy Polyakov7c4e24a2003-01-18 15:17:26 +000090 esac
Richard Levitte9a5a7402000-02-26 03:51:55 +000091 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +000092 esac
93 fi
94fi
95# Now we simply scan though... In most cases, the SYSTEM info is enough
96#
97case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
98 A/UX:*)
99 echo "m68k-apple-aux3"; exit 0
100 ;;
101
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000102 AIX:[3-9]:4:*)
103 echo "${MACHINE}-ibm-aix"; exit 0
104 ;;
105
Andy Polyakovdd558802004-04-27 22:05:50 +0000106 AIX:*:[5-9]:*)
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000107 echo "${MACHINE}-ibm-aix"; exit 0
Richard Levitte36810172001-03-15 20:23:22 +0000108 ;;
109
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000110 AIX:*)
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000111 echo "${MACHINE}-ibm-aix3"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000112 ;;
113
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000114 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
Andy Polyakov6d03b732001-07-30 16:42:15 +0000121 1[0-9].*) # HPUX 10 and 11 targets are unified
Andy Polyakov0a4c8ba2003-11-20 18:33:20 +0000122 echo "${MACHINE}-hp-hpux1x"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000123 ;;
124 *)
125 echo "${MACHINE}-hp-hpux"; exit 0
126 ;;
127 esac
128 ;;
129
Andy Polyakov1656ef21999-07-25 22:25:12 +0000130 IRIX:6.*)
Andy Polyakovda8fa721999-07-25 20:40:58 +0000131 echo "mips3-sgi-irix"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000132 ;;
133
134 IRIX64:*)
Andy Polyakovda8fa721999-07-25 20:40:58 +0000135 echo "mips4-sgi-irix64"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000136 ;;
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
Richard Levitte10a29752001-01-11 12:58:37 +0000146 GNU*)
147 echo "hurd-x86"; exit 0;
148 ;;
149
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000150 LynxOS:*)
151 echo "${MACHINE}-lynx-lynxos"; exit 0
152 ;;
153
Bodo Möllera9ffce01999-06-11 11:45:22 +0000154 BSD/OS:4.*) # BSD/OS always says 386
155 echo "i486-whatever-bsdi4"; exit 0
Bodo Möller0cceb1c1999-05-30 23:54:52 +0000156 ;;
157
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000158 BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
Ulf Möller9c789ad1999-06-16 20:26:46 +0000159 case `/sbin/sysctl -n hw.model` in
160 Pentium*)
Ulf Möller8050bc71999-06-16 23:49:39 +0000161 echo "i586-whatever-bsdi"; exit 0
Ulf Möller9c789ad1999-06-16 20:26:46 +0000162 ;;
163 *)
Ulf Möller8050bc71999-06-16 23:49:39 +0000164 echo "i386-whatever-bsdi"; exit 0
Ulf Möller9c789ad1999-06-16 20:26:46 +0000165 ;;
166 esac;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000167 ;;
168
169 BSD/386:*|BSD/OS:*)
170 echo "${MACHINE}-whatever-bsdi"; exit 0
171 ;;
172
Richard Levitteafd41c92003-01-12 04:43:44 +0000173 FreeBSD:*:*:*386*)
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000174 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" ;;
Ralf S. Engelschall44717471999-08-09 10:16:51 +0000182 * ) 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 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000189
jrmarino2df7f112016-10-21 08:48:31 -0500190 DragonFly:*)
191 echo "${MACHINE}-whatever-dragonfly"; exit 0
192 ;;
193
Richard Levitteafd41c92003-01-12 04:43:44 +0000194 FreeBSD:*)
195 echo "${MACHINE}-whatever-freebsd"; exit 0
196 ;;
197
Jérôme Duval6e08e9e2016-02-23 22:49:01 +0100198 Haiku:*)
199 echo "${MACHINE}-whatever-haiku"; exit 0
200 ;;
201
Ulf Möllerc6fdd7d1999-04-23 16:32:04 +0000202 NetBSD:*:*:*386*)
Richard Levitte48d89b52000-10-21 22:18:52 +0000203 echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000204 ;;
205
206 NetBSD:*)
207 echo "${MACHINE}-whatever-netbsd"; exit 0
208 ;;
209
210 OpenBSD:*)
211 echo "${MACHINE}-whatever-openbsd"; exit 0
212 ;;
213
Lutz Jänicke6c36f7a2001-09-06 12:39:00 +0000214 OpenUNIX:*)
215 echo "${MACHINE}-unknown-OpenUNIX${VERSION}"; exit 0
216 ;;
217
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000218 OSF1:*:*:*alpha*)
Richard Levitte6bc847e2001-08-10 15:26:21 +0000219 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
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000231 ;;
232
233 QNX:*)
Lutz Jänicke6a9af682001-11-30 09:38:57 +0000234 case "$RELEASE" in
Bodo Möller36124b12000-09-06 12:25:58 +0000235 4*)
236 echo "${MACHINE}-whatever-qnx4"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000237 ;;
Lutz Jänicke6a9af682001-11-30 09:38:57 +0000238 6*)
239 echo "${MACHINE}-whatever-qnx6"
240 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000241 *)
Bodo Möller36124b12000-09-06 12:25:58 +0000242 echo "${MACHINE}-whatever-qnx"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000243 ;;
244 esac
245 exit 0
246 ;;
247
248 Paragon*:*:*:*)
249 echo "i860-intel-osf1"; exit 0
250 ;;
251
Andy Polyakov0fad6cb2000-02-06 11:15:20 +0000252 Rhapsody:*)
253 echo "ppc-apple-rhapsody"; exit 0
254 ;;
255
Richard Levitte9b7a5522000-12-01 01:11:54 +0000256 Darwin:*)
Richard Levitte70d70a32001-03-07 10:04:00 +0000257 case "$MACHINE" in
258 Power*)
259 echo "ppc-apple-darwin${VERSION}"
260 ;;
Richard Levitte3dfcb6a2016-05-10 23:22:29 +0200261 x86_64)
262 echo "x86_64-apple-darwin${VERSION}"
263 ;;
Richard Levitte70d70a32001-03-07 10:04:00 +0000264 *)
Andy Polyakovca640562007-12-18 17:33:49 +0000265 echo "i686-apple-darwin${VERSION}"
Richard Levitte70d70a32001-03-07 10:04:00 +0000266 ;;
267 esac
268 exit 0
Richard Levitte9b7a5522000-12-01 01:11:54 +0000269 ;;
270
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000271 SunOS:5.*)
Bodo Möller72289202000-09-06 17:09:58 +0000272 echo "${MACHINE}-whatever-solaris2"; exit 0
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000273 ;;
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
Richard Levitte28a80032004-06-28 22:01:37 +0000283 VOS:*:*:i786)
284 echo "i386-stratus-vos"; exit 0
285 ;;
286
287 VOS:*:*:*)
288 echo "hppa1.1-stratus-vos"; exit 0
289 ;;
290
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000291 *: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
Ulf Möller9231f471999-06-04 21:32:31 +0000307 POSIX-BC*)
308 echo "${MACHINE}-siemens-sysv4"; exit 0 # Here, $MACHINE == "BS2000"
309 ;;
310
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000311 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
Richard Levitte41bee3e2017-03-13 21:25:37 +0100323 # 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 ;;
Andy Polyakov4848cbf2005-04-07 20:24:29 +0000332 MINGW*)
333 echo "${MACHINE}-whatever-mingw"; exit 0;
334 ;;
Ulf Möllerd78e5292001-12-19 19:37:31 +0000335 CYGWIN*)
Corinna Vinschena717c112016-01-17 16:42:38 +0100336 echo "${MACHINE}-pc-cygwin"; exit 0
Ulf Möllerd78e5292001-12-19 19:37:31 +0000337 ;;
338
Dr. Stephen Henson2f6efd62011-05-01 15:36:54 +0000339 vxworks*)
340 echo "${MACHINE}-whatever-vxworks"; exit 0;
341 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000342esac
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
Veres Lajos478b50c2013-06-13 00:22:32 +0100350# that the existence of the /usr/apollo directory is proof
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000351# enough
352if [ -d /usr/apollo ]; then
353 echo "whatever-apollo-whatever"
354 exit 0
355fi
356
357# Now NeXT
358ISNEXT=`hostinfo 2>/dev/null`
359case "$ISNEXT" in
Bodo Möller8e9eae01999-06-11 10:54:42 +0000360 *'NeXT Mach 3.3'*)
Bodo Möller74a6c7f1999-06-10 18:05:58 +0000361 echo "whatever-next-nextstep3.3"; exit 0
362 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000363 *NeXT*)
364 echo "whatever-next-nextstep"; exit 0
365 ;;
366esac
367
368# At this point we gone through all the one's
369# we know of: Punt
370
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000371echo "${MACHINE}-whatever-${SYSTEM}"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000372exit 0
373) 2>/dev/null | (
374
375# ---------------------------------------------------------------------------
376# this is where the translation occurs into SSLeay terms
377# ---------------------------------------------------------------------------
378
Ben Laurie7f625322009-01-18 12:06:37 +0000379# Only set CC if not supplied already
Andy Polyakov8b8d2dc2011-10-23 15:12:37 +0000380if [ -z "$CROSS_COMPILE$CC" ]; then
381 GCCVER=`sh -c "gcc -dumpversion" 2>/dev/null`
Ben Laurie7f625322009-01-18 12:06:37 +0000382 if [ "$GCCVER" != "" ]; then
Andy Polyakov8b8d2dc2011-10-23 15:12:37 +0000383 # 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/'`
Ben Laurie7f625322009-01-18 12:06:37 +0000391 CC=gcc
392 else
393 CC=cc
394 fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000395fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000396GCCVER=${GCCVER:-0}
Lutz Jänicke1d4547a2002-06-14 20:15:18 +0000397if [ "$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.
Andy Polyakov0a4c8ba2003-11-20 18:33:20 +0000402 # 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
Lutz Jänicke1d4547a2002-06-14 20:15:18 +0000406 GCC_BITS="64"
407 fi
408 fi
409fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000410if [ "$SYSTEM" = "SunOS" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000411 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
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000420 # check for WorkShop C, expected output is "cc: blah-blah C x.x"
Andy Polyakov1656ef21999-07-25 22:25:12 +0000421 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}
Andy Polyakov0abfd602005-04-04 17:10:53 +0000425 if [ $MACHINE != i86pc -a $CCVER -gt 40 ]; then
Andy Polyakov1656ef21999-07-25 22:25:12 +0000426 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
Ulf Möller744029c1999-05-04 23:18:24 +0000432 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000433fi
434
Andy Polyakov726c2232003-01-18 15:13:03 +0000435if [ "${SYSTEM}" = "AIX" ]; then # favor vendor cc over gcc
Richard Levitte439909a2003-03-20 11:44:28 +0000436 (cc) 2>&1 | grep -iv "not found" > /dev/null && CC=cc
Andy Polyakov726c2232003-01-18 15:13:03 +0000437fi
438
Andy Polyakovda8fa721999-07-25 20:40:58 +0000439CCVER=${CCVER:-0}
440
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000441# read the output of the embedded GuessOS
442read GUESSOS
443
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000444echo Operating system: $GUESSOS
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000445
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
449case "$GUESSOS" in
Dr. Stephen Henson15c7adb2009-07-01 11:46:03 +0000450 uClinux*64*)
451 OUT=uClinux-dist64
452 ;;
453 uClinux*)
454 OUT=uClinux-dist
455 ;;
Andy Polyakovda8fa721999-07-25 20:40:58 +0000456 mips3-sgi-irix)
Andy Polyakov0c516002004-12-27 14:57:54 +0000457 #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
Andy Polyakovda8fa721999-07-25 20:40:58 +0000464 OUT="irix-mips3-$CC"
465 ;;
466 mips4-sgi-irix64)
467 echo "WARNING! If you wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100468 echo " invoke '$THERE/Configure irix64-mips4-$CC' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200469 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000470 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100471 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Ulf Möller06a2b072001-02-27 21:10:21 +0000472 fi
Andy Polyakov0c516002004-12-27 14:57:54 +0000473 #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
Andy Polyakovda8fa721999-07-25 20:40:58 +0000480 OUT="irix-mips3-$CC"
481 ;;
Andy Polyakovb7efa562005-01-24 14:38:14 +0000482 ppc-apple-rhapsody) OUT="rhapsody-ppc-cc" ;;
Andy Polyakovd6c76452007-07-31 18:24:41 +0000483 ppc-apple-darwin*)
484 ISA64=`(sysctl -n hw.optional.64bitops) 2>/dev/null`
Andy Polyakovaf036842011-11-08 13:31:28 +0000485 if [ "$ISA64" = "1" -a -z "$KERNEL_BITS" ]; then
Andy Polyakovd6c76452007-07-31 18:24:41 +0000486 echo "WARNING! If you wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100487 echo " invoke '$THERE/Configure darwin64-ppc-cc' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200488 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakovd6c76452007-07-31 18:24:41 +0000489 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100490 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakovd6c76452007-07-31 18:24:41 +0000491 fi
492 fi
Andy Polyakovaf036842011-11-08 13:31:28 +0000493 if [ "$ISA64" = "1" -a "$KERNEL_BITS" = "64" ]; then
494 OUT="darwin64-ppc-cc"
495 else
496 OUT="darwin-ppc-cc"
497 fi ;;
Andy Polyakovca640562007-12-18 17:33:49 +0000498 i?86-apple-darwin*)
Andy Polyakov0bb01b72007-08-31 10:09:34 +0000499 ISA64=`(sysctl -n hw.optional.x86_64) 2>/dev/null`
Andy Polyakovaf036842011-11-08 13:31:28 +0000500 if [ "$ISA64" = "1" -a -z "$KERNEL_BITS" ]; then
Andy Polyakov0bb01b72007-08-31 10:09:34 +0000501 echo "WARNING! If you wish to build 64-bit library, then you have to"
Richard Levitte3dfcb6a2016-05-10 23:22:29 +0200502 echo " invoke 'KERNEL_BITS=64 $THERE/config $options'."
Richard Levitteffb261f2016-08-15 18:46:39 +0200503 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakov0bb01b72007-08-31 10:09:34 +0000504 echo " You have about 5 seconds to press Ctrl-C to abort."
Ben Laurie190c8c62015-04-19 14:10:54 +0100505 # The stty technique used elsewhere doesn't work on
506 # MacOS. At least, right now on this Mac.
507 sleep 5
Andy Polyakov0bb01b72007-08-31 10:09:34 +0000508 fi
509 fi
Andy Polyakovaf036842011-11-08 13:31:28 +0000510 if [ "$ISA64" = "1" -a "$KERNEL_BITS" = "64" ]; then
511 OUT="darwin64-x86_64-cc"
512 else
513 OUT="darwin-i386-cc"
514 fi ;;
Richard Levitte3dfcb6a2016-05-10 23:22:29 +0200515 x86_64-apple-darwin*)
Richard Levitte3dfcb6a2016-05-10 23:22:29 +0200516 if [ "$KERNEL_BITS" = "32" ]; then
517 OUT="darwin-i386-cc"
518 else
519 OUT="darwin64-x86_64-cc"
520 fi ;;
Andy Polyakova2570242011-11-08 13:02:57 +0000521 armv6+7-*-iphoneos)
522 options="$options -arch%20armv6 -arch%20armv7"
523 OUT="iphoneos-cross" ;;
524 *-*-iphoneos)
525 options="$options -arch%20${MACHINE}"
526 OUT="iphoneos-cross" ;;
Andy Polyakovb06f7d92014-10-23 16:04:01 +0200527 arm64-*-iphoneos|*-*-ios64)
528 OUT="ios64-cross" ;;
Bodo Möller93cd57a2001-02-09 09:40:18 +0000529 alpha-*-linux2)
Andy Polyakovb7efa562005-01-24 14:38:14 +0000530 ISA=`awk '/cpu model/{print$4;exit(0);}' /proc/cpuinfo`
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000531 case ${ISA:-generic} in
Andy Polyakovb7efa562005-01-24 14:38:14 +0000532 *[678]) OUT="linux-alpha+bwx-$CC" ;;
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000533 *) OUT="linux-alpha-$CC" ;;
534 esac
535 if [ "$CC" = "gcc" ]; then
536 case ${ISA:-generic} in
Dr. Stephen Henson206a9752007-06-19 15:43:48 +0000537 EV5|EV45) options="$options -mcpu=ev5";;
538 EV56|PCA56) options="$options -mcpu=ev56";;
539 *) options="$options -mcpu=ev6";;
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000540 esac
541 fi
542 ;;
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000543 ppc64-*-linux2)
Andy Polyakov78c3e202012-10-21 18:19:41 +0000544 if [ -z "$KERNEL_BITS" ]; then
545 echo "WARNING! If you wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100546 echo " invoke '$THERE/Configure linux-ppc64' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200547 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakov78c3e202012-10-21 18:19:41 +0000548 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100549 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakov78c3e202012-10-21 18:19:41 +0000550 fi
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000551 fi
Andy Polyakov78c3e202012-10-21 18:19:41 +0000552 if [ "$KERNEL_BITS" = "64" ]; then
553 OUT="linux-ppc64"
554 else
555 OUT="linux-ppc"
556 (echo "__LP64__" | gcc -E -x c - 2>/dev/null | grep "^__LP64__" 2>&1 > /dev/null) || options="$options -m32"
557 fi
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000558 ;;
Andy Polyakovf1982ac2013-11-12 22:36:24 +0100559 ppc64le-*-linux2) OUT="linux-ppc64le" ;;
Andy Polyakovbdf5e182000-01-02 20:46:58 +0000560 ppc-*-linux2) OUT="linux-ppc" ;;
Andy Polyakovb8c59292012-09-19 20:58:07 +0000561 mips64*-*-linux2)
562 echo "WARNING! If you wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100563 echo " invoke '$THERE/Configure linux64-mips64' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200564 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakovb8c59292012-09-19 20:58:07 +0000565 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100566 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakovb8c59292012-09-19 20:58:07 +0000567 fi
568 OUT="linux-mips64"
569 ;;
570 mips*-*-linux2) OUT="linux-mips32" ;;
Dr. Stephen Henson2f6efd62011-05-01 15:36:54 +0000571 ppc60x-*-vxworks*) OUT="vxworks-ppc60x" ;;
572 ppcgen-*-vxworks*) OUT="vxworks-ppcgen" ;;
Dr. Stephen Henson1fb2e0f2011-10-14 17:28:10 +0000573 pentium-*-vxworks*) OUT="vxworks-pentium" ;;
574 simlinux-*-vxworks*) OUT="vxworks-simlinux" ;;
575 mips-*-vxworks*) OUT="vxworks-mips";;
Ralf S. Engelschall010712f2000-02-29 15:29:02 +0000576 ia64-*-linux?) OUT="linux-ia64" ;;
Andy Polyakova0618e31999-07-25 15:13:49 +0000577 sparc64-*-linux2)
Bodo Möllerc14b4d62003-01-13 12:52:33 +0000578 echo "WARNING! If you *know* that your GNU C supports 64-bit/V9 ABI"
Andy Polyakov6d4ac672002-12-05 13:17:52 +0000579 echo " and wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100580 echo " invoke '$THERE/Configure linux64-sparcv9' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200581 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakov6d4ac672002-12-05 13:17:52 +0000582 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100583 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakov6d4ac672002-12-05 13:17:52 +0000584 fi
Andy Polyakova0618e31999-07-25 15:13:49 +0000585 OUT="linux-sparcv9" ;;
Andy Polyakovda8fa721999-07-25 20:40:58 +0000586 sparc-*-linux2)
Andy Polyakovb7efa562005-01-24 14:38:14 +0000587 KARCH=`awk '/^type/{print$3;exit(0);}' /proc/cpuinfo`
Andy Polyakova0618e31999-07-25 15:13:49 +0000588 case ${KARCH:-sun4} in
589 sun4u*) OUT="linux-sparcv9" ;;
590 sun4m) OUT="linux-sparcv8" ;;
591 sun4d) OUT="linux-sparcv8" ;;
Andy Polyakovb7efa562005-01-24 14:38:14 +0000592 *) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
Andy Polyakova0618e31999-07-25 15:13:49 +0000593 esac ;;
Andy Polyakov57a68b22005-01-20 17:00:14 +0000594 parisc*-*-linux2)
595 # 64-bit builds under parisc64 linux are not supported and
596 # compiler is expected to generate 32-bit objects...
597 CPUARCH=`awk '/cpu family/{print substr($5,1,3); exit(0);}' /proc/cpuinfo`
598 CPUSCHEDULE=`awk '/^cpu.[ ]*: PA/{print substr($3,3); exit(0);}' /proc/cpuinfo`
Richard Levitte95f8c712002-01-02 10:00:22 +0000599
600 # ??TODO ?? Model transformations
601 # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off
602 # assuming no further arch. identification will ever be used by GCC.
603 # 1. I'm most concerned about whether is a 7300LC is closer to a 7100 versus a 7100LC.
604 # 2. The variant 64-bit processors cause concern should GCC support explicit schedulers
605 # for these chips in the future.
606 # PA7300LC -> 7100LC (1.1)
607 # PA8200 -> 8000 (2.0)
608 # PA8500 -> 8000 (2.0)
609 # PA8600 -> 8000 (2.0)
610
Andy Polyakov57a68b22005-01-20 17:00:14 +0000611 CPUSCHEDULE=`echo $CPUSCHEDULE|sed -e 's/7300LC/7100LC/' -e 's/8.00/8000/'`
Richard Levitte95f8c712002-01-02 10:00:22 +0000612 # Finish Model transformations
613
Andy Polyakovb7efa562005-01-24 14:38:14 +0000614 options="$options -DB_ENDIAN -mschedule=$CPUSCHEDULE -march=$CPUARCH"
615 OUT="linux-generic32" ;;
Andy Polyakov2c3ee162007-09-27 07:43:58 +0000616 armv[1-3]*-*-linux2) OUT="linux-generic32" ;;
Andy Polyakov87873f42011-07-17 17:40:29 +0000617 armv[7-9]*-*-linux2) OUT="linux-armv4"; options="$options -march=armv7-a" ;;
Andy Polyakov7722e532007-09-27 16:27:03 +0000618 arm*-*-linux2) OUT="linux-armv4" ;;
Andy Polyakove8d93e32014-06-01 17:21:06 +0200619 aarch64-*-linux2) OUT="linux-aarch64" ;;
Lutz Jänicke02756aa2007-02-21 18:10:20 +0000620 sh*b-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
621 sh*-*-linux2) OUT="linux-generic32"; options="$options -DL_ENDIAN" ;;
Lutz Jänicke072dfb92007-02-21 17:58:54 +0000622 m68k*-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
Andy Polyakovb900df52007-04-30 09:22:27 +0000623 s390-*-linux2) OUT="linux-generic32"; options="$options -DB_ENDIAN" ;;
Andy Polyakove822c752010-11-29 20:52:43 +0000624 s390x-*-linux2)
625 # To be uncommented when glibc bug is fixed, see Configure...
626 #if egrep -e '^features.* highgprs' /proc/cpuinfo >/dev/null ; then
627 # echo "WARNING! If you wish to build \"highgprs\" 32-bit library, then you"
628 # echo " have to invoke './Configure linux32-s390x' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200629 # if [ "$DRYRUN" = "false" -a -t -1 ]; then
Andy Polyakove822c752010-11-29 20:52:43 +0000630 # echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100631 # (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakove822c752010-11-29 20:52:43 +0000632 # fi
633 #fi
634 OUT="linux64-s390x"
635 ;;
Andy Polyakovc5c0cac2016-06-23 15:52:02 +0200636 x86_64-*-linux?)
637 if $CC -dM -E -x c /dev/null 2>&1 | grep -q ILP32 > /dev/null; then
638 OUT="linux-x32"
639 else
640 OUT="linux-x86_64"
641 fi ;;
Richard Levitte27a451e2016-11-15 09:56:20 +0100642 *86-*-linux2)
643 # On machines where the compiler understands -m32, prefer a
644 # config target that uses it
645 if $CC -m32 -E -x c /dev/null > /dev/null 2>&1; then
646 OUT="linux-x86"
647 else
648 OUT="linux-elf"
649 fi ;;
Andy Polyakov8f3bc092016-06-23 16:04:37 +0200650 *86-*-linux1) OUT="linux-aout" ;;
651 *-*-linux?) OUT="linux-generic32" ;;
Andy Polyakov160065c2007-05-04 13:04:17 +0000652 sun4[uv]*-*-solaris2)
Richard Levittecc8aa082002-08-16 09:41:14 +0000653 OUT="solaris-sparcv9-$CC"
mmiyashi74c2db32015-07-27 17:07:59 -0500654 ISA64=`(isainfo) 2>/dev/null | grep sparcv9`
Andy Polyakovbba391a2011-11-08 14:40:33 +0000655 if [ "$ISA64" != "" -a "$KERNEL_BITS" = "" ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000656 if [ "$CC" = "cc" -a $CCVER -ge 50 ]; then
Andy Polyakov1656ef21999-07-25 22:25:12 +0000657 echo "WARNING! If you wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100658 echo " invoke '$THERE/Configure solaris64-sparcv9-cc' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200659 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000660 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100661 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Ulf Möller06a2b072001-02-27 21:10:21 +0000662 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000663 elif [ "$CC" = "gcc" -a "$GCC_ARCH" = "-m64" ]; then
664 # $GCC_ARCH denotes default ABI chosen by compiler driver
665 # (first one found on the $PATH). I assume that user
666 # expects certain consistency with the rest of his builds
667 # and therefore switch over to 64-bit. <appro>
668 OUT="solaris64-sparcv9-gcc"
669 echo "WARNING! If you wish to build 32-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100670 echo " invoke '$THERE/Configure solaris-sparcv9-gcc' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200671 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000672 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100673 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakovac7b4262001-07-25 15:58:57 +0000674 fi
675 elif [ "$GCC_ARCH" = "-m32" ]; then
676 echo "NOTICE! If you *know* that your GNU C supports 64-bit/V9 ABI"
677 echo " and wish to build 64-bit library, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100678 echo " invoke '$THERE/Configure solaris64-sparcv9-gcc' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200679 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakovac7b4262001-07-25 15:58:57 +0000680 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100681 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakovac7b4262001-07-25 15:58:57 +0000682 fi
683 fi
Andy Polyakov1656ef21999-07-25 22:25:12 +0000684 fi
Andy Polyakovbba391a2011-11-08 14:40:33 +0000685 if [ "$ISA64" != "" -a "$KERNEL_BITS" = "64" ]; then
686 OUT="solaris64-sparcv9-$CC"
687 fi
Andy Polyakovac7b4262001-07-25 15:58:57 +0000688 ;;
Bodo Möller72289202000-09-06 17:09:58 +0000689 sun4m-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
690 sun4d-*-solaris2) OUT="solaris-sparcv8-$CC" ;;
691 sun4*-*-solaris2) OUT="solaris-sparcv7-$CC" ;;
Andy Polyakov0abfd602005-04-04 17:10:53 +0000692 *86*-*-solaris2)
mmiyashi74c2db32015-07-27 17:07:59 -0500693 ISA64=`(isainfo) 2>/dev/null | grep amd64`
Andy Polyakovbba391a2011-11-08 14:40:33 +0000694 if [ "$ISA64" != "" -a ${KERNEL_BITS:-64} -eq 64 ]; then
Andy Polyakov0abfd602005-04-04 17:10:53 +0000695 OUT="solaris64-x86_64-$CC"
696 else
697 OUT="solaris-x86-$CC"
Andy Polyakove4c9b852005-05-21 16:50:27 +0000698 if [ `uname -r | sed -e 's/5\.//'` -lt 10 ]; then
699 options="$options no-sse2"
700 fi
Andy Polyakov0abfd602005-04-04 17:10:53 +0000701 fi
702 ;;
Andy Polyakovb7efa562005-01-24 14:38:14 +0000703 *-*-sunos4) OUT="sunos-$CC" ;;
704
Andy Polyakovb2d91a62005-06-05 18:10:19 +0000705 *86*-*-bsdi4) OUT="BSD-x86-elf"; options="$options no-sse2 -ldl" ;;
Andy Polyakove45c1002007-08-01 11:20:39 +0000706 alpha*-*-*bsd*) OUT="BSD-generic64"; options="$options -DL_ENDIAN" ;;
707 powerpc64-*-*bsd*) OUT="BSD-generic64"; options="$options -DB_ENDIAN" ;;
Andy Polyakovb7efa562005-01-24 14:38:14 +0000708 sparc64-*-*bsd*) OUT="BSD-sparc64" ;;
709 ia64-*-*bsd*) OUT="BSD-ia64" ;;
jrmarino2df7f112016-10-21 08:48:31 -0500710 x86_64-*-dragonfly*) OUT="BSD-x86_64" ;;
Andy Polyakovb7efa562005-01-24 14:38:14 +0000711 amd64-*-*bsd*) OUT="BSD-x86_64" ;;
Andy Polyakov8b452002005-06-20 17:39:10 +0000712 *86*-*-*bsd*) # mimic ld behaviour when it's looking for libc...
713 if [ -L /usr/lib/libc.so ]; then # [Free|Net]BSD
714 libc=/usr/lib/libc.so
715 else # OpenBSD
716 # ld searches for highest libc.so.* and so do we
Andy Polyakovc256e692013-06-30 23:55:55 +0200717 libc=`(ls /usr/lib/libc.so.* /lib/libc.so.* | tail -1) 2>/dev/null`
Andy Polyakov8b452002005-06-20 17:39:10 +0000718 fi
719 case "`(file -L $libc) 2>/dev/null`" in
Andy Polyakove1892f22005-02-06 13:20:23 +0000720 *ELF*) OUT="BSD-x86-elf" ;;
Andy Polyakove4c9b852005-05-21 16:50:27 +0000721 *) OUT="BSD-x86"; options="$options no-sse2" ;;
Andy Polyakove1892f22005-02-06 13:20:23 +0000722 esac ;;
Andy Polyakov8f3bc092016-06-23 16:04:37 +0200723 *-*-*bsd*) OUT="BSD-generic32" ;;
724
Jérôme Duval6e08e9e2016-02-23 22:49:01 +0100725 x86_64-*-haiku) OUT="haiku-x86_64" ;;
726 *-*-haiku) OUT="haiku-x86" ;;
Andy Polyakovb7efa562005-01-24 14:38:14 +0000727
728 *-*-osf) OUT="osf1-alpha-cc" ;;
729 *-*-tru64) OUT="tru64-alpha-cc" ;;
Andy Polyakov14cc0aa2005-06-26 18:06:38 +0000730 *-*-[Uu]nix[Ww]are7)
Lutz Jänickecb42ce02001-09-07 12:13:10 +0000731 if [ "$CC" = "gcc" ]; then
Andy Polyakov14cc0aa2005-06-26 18:06:38 +0000732 OUT="unixware-7-gcc" ; options="$options no-sse2"
Lutz Jänickecb42ce02001-09-07 12:13:10 +0000733 else
Andy Polyakov14cc0aa2005-06-26 18:06:38 +0000734 OUT="unixware-7" ; options="$options no-sse2 -D__i386__"
Lutz Jänickecb42ce02001-09-07 12:13:10 +0000735 fi
736 ;;
Andy Polyakov5b737a02005-05-31 09:39:03 +0000737 *-*-[Uu]nix[Ww]are20*) OUT="unixware-2.0"; options="$options no-sse2 no-sha512" ;;
738 *-*-[Uu]nix[Ww]are21*) OUT="unixware-2.1"; options="$options no-sse2 no-sha512" ;;
Richard Levitte28a80032004-06-28 22:01:37 +0000739 *-*-vos)
740 options="$options no-threads no-shared no-asm no-dso"
741 EXE=".pm"
742 OUT="vos-$CC" ;;
Ulf Möller9231f471999-06-04 21:32:31 +0000743 BS2000-siemens-sysv4) OUT="BS2000-OSD" ;;
Andy Polyakov6d03b732001-07-30 16:42:15 +0000744 *-hpux1*)
Andy Polyakov12470922004-01-29 22:16:08 +0000745 if [ $CC = "gcc" -a $GCC_BITS = "64" ]; then
746 OUT="hpux64-parisc2-gcc"
Lutz Jänicke1d4547a2002-06-14 20:15:18 +0000747 fi
Dr. Stephen Henson9fa8f3a2011-06-24 14:04:03 +0000748 [ "$KERNEL_BITS" ] || KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null`
Andy Polyakov6d03b732001-07-30 16:42:15 +0000749 KERNEL_BITS=${KERNEL_BITS:-32}
750 CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null`
751 CPU_VERSION=${CPU_VERSION:-0}
752 # See <sys/unistd.h> for further info on CPU_VERSION.
753 if [ $CPU_VERSION -ge 768 ]; then # IA-64 CPU
Dr. Stephen Hensonbdd45492011-06-27 11:38:48 +0000754 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
755 OUT="hpux64-ia64-cc"
756 else
757 OUT="hpux-ia64-cc"
758 fi
Andy Polyakov6d03b732001-07-30 16:42:15 +0000759 elif [ $CPU_VERSION -ge 532 ]; then # PA-RISC 2.x CPU
Andy Polyakov12470922004-01-29 22:16:08 +0000760 OUT=${OUT:-"hpux-parisc2-${CC}"}
Andy Polyakov6d03b732001-07-30 16:42:15 +0000761 if [ $KERNEL_BITS -eq 64 -a "$CC" = "cc" ]; then
762 echo "WARNING! If you wish to build 64-bit library then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100763 echo " invoke '$THERE/Configure hpux64-parisc2-cc' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200764 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakov6d03b732001-07-30 16:42:15 +0000765 echo " You have about 5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100766 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakov6d03b732001-07-30 16:42:15 +0000767 fi
768 fi
Andy Polyakov74acf1c2016-03-14 13:42:48 +0100769 # PA-RISC 2.0 is no longer supported as separate 32-bit
770 # target. This is compensated for by run-time detection
771 # in most critical assembly modules and taking advantage
Andy Polyakovd8292af2016-03-16 14:29:16 +0100772 # of 2.0 architecture in PA-RISC 1.1 build.
Andy Polyakov74acf1c2016-03-14 13:42:48 +0100773 OUT="hpux-parisc1_1-${CC}"
Andy Polyakov6d03b732001-07-30 16:42:15 +0000774 elif [ $CPU_VERSION -ge 528 ]; then # PA-RISC 1.1+ CPU
Andy Polyakov74acf1c2016-03-14 13:42:48 +0100775 OUT="hpux-parisc1_1-${CC}"
Andy Polyakov6d03b732001-07-30 16:42:15 +0000776 elif [ $CPU_VERSION -ge 523 ]; then # PA-RISC 1.0 CPU
Ulf Möller83ed4912006-05-06 18:26:12 +0000777 OUT="hpux-parisc-${CC}"
Andy Polyakov6d03b732001-07-30 16:42:15 +0000778 else # Motorola(?) CPU
779 OUT="hpux-$CC"
780 fi
781 options="$options -D_REENTRANT" ;;
Andy Polyakovbcba6cc2000-02-12 23:33:01 +0000782 *-hpux) OUT="hpux-parisc-$CC" ;;
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000783 *-aix)
Dr. Stephen Henson9fa8f3a2011-06-24 14:04:03 +0000784 [ "$KERNEL_BITS" ] || KERNEL_BITS=`(getconf KERNEL_BITMODE) 2>/dev/null`
Andy Polyakovdd558802004-04-27 22:05:50 +0000785 KERNEL_BITS=${KERNEL_BITS:-32}
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000786 OBJECT_MODE=${OBJECT_MODE:-32}
Andy Polyakovdd558802004-04-27 22:05:50 +0000787 if [ "$CC" = "gcc" ]; then
788 OUT="aix-gcc"
Dr. Stephen Hensona0e4a8e2010-03-09 17:08:48 +0000789 if [ $OBJECT_MODE -eq 64 ]; then
790 echo 'Your $OBJECT_MODE was found to be set to 64'
791 OUT="aix64-gcc"
792 fi
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000793 elif [ $OBJECT_MODE -eq 64 ]; then
794 echo 'Your $OBJECT_MODE was found to be set to 64'
795 OUT="aix64-cc"
Andy Polyakovdd558802004-04-27 22:05:50 +0000796 else
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000797 OUT="aix-cc"
798 if [ $KERNEL_BITS -eq 64 ]; then
799 echo "WARNING! If you wish to build 64-bit kit, then you have to"
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100800 echo " invoke '$THERE/Configure aix64-cc' *manually*."
Richard Levitteffb261f2016-08-15 18:46:39 +0200801 if [ "$DRYRUN" = "false" -a -t 1 ]; then
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000802 echo " You have ~5 seconds to press Ctrl-C to abort."
Richard Levittea87c1592016-03-13 11:31:04 +0100803 (trap "stty `stty -g`; exit 0" 2 0; stty -icanon min 0 time 50; read waste) <&1
Andy Polyakov76ef6ac2004-12-20 13:44:34 +0000804 fi
805 fi
Andy Polyakovdd558802004-04-27 22:05:50 +0000806 fi
Andy Polyakov0a29f512007-03-20 08:57:18 +0000807 if (lsattr -E -O -l `lsdev -c processor|awk '{print$1;exit}'` | grep -i powerpc) >/dev/null 2>&1; then
Andy Polyakov60dd0852005-09-20 07:43:27 +0000808 : # this applies even to Power3 and later, as they return PowerPC_POWER[345]
809 else
810 options="$options no-asm"
811 fi
Andy Polyakovdd558802004-04-27 22:05:50 +0000812 ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000813 # these are all covered by the catchall below
Richard Levitte3f542962016-01-17 17:48:53 +0100814 i[3456]86-*-cygwin) OUT="Cygwin-x86" ;;
Corinna Vinschena717c112016-01-17 16:42:38 +0100815 *-*-cygwin) OUT="Cygwin-${MACHINE}" ;;
Dr. Stephen Henson4f335342009-06-17 11:37:44 +0000816 x86pc-*-qnx6) OUT="QNX6-i386" ;;
817 *-*-qnx6) OUT="QNX6" ;;
Andy Polyakov8fcdb1e2011-10-15 08:32:16 +0000818 x86-*-android|i?86-*-android) OUT="android-x86" ;;
Richard Levitte893fe732016-02-22 21:02:42 +0100819 armv[7-9]*-*-android)
820 OUT="android-armeabi"; options="$options -march=armv7-a" ;;
821 arm*-*-android) OUT="android-armeabi" ;;
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000822 *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;;
823esac
824
Veres Lajos478b50c2013-06-13 00:22:32 +0100825# NB: This atalla support has been superseded by the ENGINE support
Richard Levitte5270e702000-10-26 21:07:28 +0000826# That contains its own header and definitions anyway. Support can
827# be enabled or disabled on any supported platform without external
828# headers, eg. by adding the "hw-atalla" switch to ./config or
829# perl Configure
830#
Ben Lauriebd03b992000-02-16 22:15:39 +0000831# See whether we can compile Atalla support
Richard Levitte5270e702000-10-26 21:07:28 +0000832#if [ -f /usr/include/atasi.h ]
833#then
834# options="$options -DATALLA"
835#fi
Ben Lauriebd03b992000-02-16 22:15:39 +0000836
Dr. Stephen Henson1fb2e0f2011-10-14 17:28:10 +0000837if [ -n "$CONFIG_OPTIONS" ]; then
838 options="$options $CONFIG_OPTIONS"
839fi
840
Andy Polyakov8b8d2dc2011-10-23 15:12:37 +0000841if expr "$options" : '.*no\-asm' > /dev/null; then :; else
842 sh -c "$CROSS_COMPILE${CC:-gcc} -Wa,--help -c -o /tmp/null.$$.o -x assembler /dev/null && rm /tmp/null.$$.o" 2>&1 | \
843 grep \\--noexecstack >/dev/null && \
Andy Polyakov2966c2e2011-07-13 14:23:19 +0000844 options="$options -Wa,--noexecstack"
Dr. Stephen Henson1fb2e0f2011-10-14 17:28:10 +0000845fi
Andy Polyakov2966c2e2011-07-13 14:23:19 +0000846
Dr. Stephen Henson9540ccd2006-05-12 16:06:12 +0000847# gcc < 2.8 does not support -march=ultrasparc
Andy Polyakov1656ef21999-07-25 22:25:12 +0000848if [ "$OUT" = solaris-sparcv9-gcc -a $GCCVER -lt 28 ]
Ulf Möllerb6735831999-05-18 23:44:38 +0000849then
Andy Polyakovd0590fe2004-07-18 16:19:34 +0000850 echo "WARNING! Falling down to 'solaris-sparcv8-gcc'."
851 echo " Upgrade to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000852 sleep 5
Andy Polyakovd0590fe2004-07-18 16:19:34 +0000853 OUT=solaris-sparcv8-gcc
Andy Polyakova0618e31999-07-25 15:13:49 +0000854fi
855if [ "$OUT" = "linux-sparcv9" -a $GCCVER -lt 28 ]
856then
857 echo "WARNING! Falling down to 'linux-sparcv8'."
858 echo " Upgrade to gcc-2.8 or later."
Andy Polyakov1656ef21999-07-25 22:25:12 +0000859 sleep 5
Andy Polyakova0618e31999-07-25 15:13:49 +0000860 OUT=linux-sparcv8
Ulf Möllerb6735831999-05-18 23:44:38 +0000861fi
862
Ulf Möller5d3bb221999-04-22 19:23:56 +0000863case "$GUESSOS" in
864 i386-*) options="$options 386" ;;
865esac
866
Paulid42d0a42017-02-01 10:10:13 +1000867for i in aes aria bf camellia cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa seed sha
Ulf Möller9231f471999-06-04 21:32:31 +0000868do
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100869 if [ ! -d $THERE/crypto/$i ]
Ulf Möller9231f471999-06-04 21:32:31 +0000870 then
871 options="$options no-$i"
872 fi
873done
874
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000875if [ -z "$OUT" ]; then
876 OUT="$CC"
877fi
878
Ulf Möller99aab161999-04-01 12:34:33 +0000879if [ ".$PERL" = . ] ; then
880 for i in . `echo $PATH | sed 's/:/ /g'`; do
Richard Levitte28a80032004-06-28 22:01:37 +0000881 if [ -f "$i/perl5$EXE" ] ; then
882 PERL="$i/perl5$EXE"
Ulf Möller99aab161999-04-01 12:34:33 +0000883 break;
884 fi;
885 done
886fi
887
888if [ ".$PERL" = . ] ; then
889 for i in . `echo $PATH | sed 's/:/ /g'`; do
Richard Levitte28a80032004-06-28 22:01:37 +0000890 if [ -f "$i/perl$EXE" ] ; then
891 if "$i/perl$EXE" -e 'exit($]<5.0)'; then
892 PERL="$i/perl$EXE"
Ulf Möllera5a47e41999-04-09 16:25:25 +0000893 break;
894 fi;
Ulf Möller99aab161999-04-01 12:34:33 +0000895 fi;
896 done
897fi
898
Ulf Möllera5a47e41999-04-09 16:25:25 +0000899if [ ".$PERL" = . ] ; then
Ulf Möller99aab161999-04-01 12:34:33 +0000900 echo "You need Perl 5."
901 exit 1
902fi
903
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000904# run Configure to check to see if we need to specify the
905# compiler for the platform ... in which case we add it on
906# the end ... otherwise we leave it off
Ulf Möller99aab161999-04-01 12:34:33 +0000907
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100908$PERL $THERE/Configure LIST | grep "$OUT-$CC" > /dev/null
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000909if [ $? = "0" ]; then
910 OUT="$OUT-$CC"
911fi
912
Richard Levitted2a5c402015-03-22 09:00:43 +0100913OUT="$OUT"
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000914
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100915$PERL $THERE/Configure LIST | grep "$OUT" > /dev/null
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000916if [ $? = "0" ]; then
Richard Levitteffb261f2016-08-15 18:46:39 +0200917 if [ "$VERBOSE" = "true" ]; then
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100918 echo $PERL $THERE/Configure $OUT $options
Richard Levitteffb261f2016-08-15 18:46:39 +0200919 fi
920 if [ "$DRYRUN" = "false" ]; then
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100921 $PERL $THERE/Configure $OUT $options
Ulf Möllerb1fe6b41999-04-30 18:22:59 +0000922 fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000923else
Ulf Möller744029c1999-05-04 23:18:24 +0000924 echo "This system ($OUT) is not supported. See file INSTALL for details."
Rich Salz141d7322016-09-06 12:26:38 -0400925 exit 1
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000926fi
Ben Laurie26967dc2017-01-02 18:13:30 +0000927
928if [ "$OUT" = "darwin64-x86_64-cc" ]; then
929 echo "WARNING! If you wish to build 32-bit libraries, then you have to"
930 echo " invoke 'KERNEL_BITS=32 $THERE/config $options'."
931fi
Ralf S. Engelschall58964a41998-12-21 10:56:39 +0000932)