config 28 KB

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