config 28 KB

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