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