config 27 KB

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