Config.in.arch 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738
  1. choice
  2. prompt "Target Architecture"
  3. default BR2_i386
  4. help
  5. Select the target architecture family to build for.
  6. config BR2_alpha
  7. bool "alpha"
  8. depends on BROKEN # no threads, shared libs, gcc psignal compile errors
  9. config BR2_arm
  10. bool "arm"
  11. config BR2_armeb
  12. bool "armeb"
  13. config BR2_avr32
  14. bool "avr32"
  15. select BR2_SOFT_FLOAT
  16. config BR2_cris
  17. bool "cris"
  18. config BR2_ia64
  19. bool "ia64"
  20. depends on BROKEN # uclibc linker errors
  21. config BR2_i386
  22. bool "i386"
  23. config BR2_m68k
  24. bool "m68k"
  25. depends on BROKEN # ice in uclibc / inet_ntoa_r
  26. config BR2_mips
  27. bool "mips"
  28. config BR2_mipsel
  29. bool "mipsel"
  30. config BR2_nios2
  31. bool "nios2"
  32. depends on BROKEN # no kernel headers
  33. config BR2_powerpc
  34. bool "powerpc"
  35. config BR2_sh
  36. bool "superh"
  37. config BR2_sh64
  38. bool "superh64"
  39. config BR2_sparc
  40. bool "sparc"
  41. config BR2_sparc64
  42. bool "sparc64"
  43. config BR2_x86_64
  44. bool "x86_64"
  45. config BR2_xtensa
  46. bool "xtensa"
  47. endchoice
  48. #
  49. # Keep the variants separate, there's no need to clutter everything else.
  50. # sh is fairly "special" in this regard, as virtually everyone else has
  51. # things kept down to a _sensible_ number of target variants. No such
  52. # luck for sh..
  53. #
  54. choice
  55. prompt "Target Architecture Variant"
  56. depends on BR2_arm || BR2_armeb
  57. default BR2_generic_arm
  58. help
  59. Specific CPU variant to use
  60. config BR2_generic_arm
  61. bool "generic_arm"
  62. config BR2_arm7tdmi
  63. bool "arm7tdmi"
  64. config BR2_arm610
  65. bool "arm610"
  66. config BR2_arm710
  67. bool "arm710"
  68. config BR2_arm720t
  69. bool "arm720t"
  70. config BR2_arm920t
  71. bool "arm920t"
  72. config BR2_arm922t
  73. bool "arm922t"
  74. config BR2_arm926t
  75. bool "arm926t"
  76. config BR2_arm10t
  77. bool "arm10t"
  78. config BR2_arm1136jf_s
  79. bool "arm1136jf_s"
  80. config BR2_arm1176jz_s
  81. bool "arm1176jz-s"
  82. config BR2_arm1176jzf_s
  83. bool "arm1176jzf-s"
  84. config BR2_sa110
  85. bool "sa110"
  86. config BR2_sa1100
  87. bool "sa1100"
  88. config BR2_xscale
  89. bool "xscale"
  90. config BR2_iwmmxt
  91. bool "iwmmxt"
  92. endchoice
  93. config BR2_ARM_TYPE
  94. string
  95. default GENERIC_ARM if BR2_generic_arm
  96. default ARM610 if BR2_arm610
  97. default ARM710 if BR2_arm710
  98. default ARM7TDMI if BR2_arm7tdmi
  99. default ARM720T if BR2_arm720t
  100. default ARM920T if BR2_arm920t
  101. default ARM922T if BR2_arm922t
  102. default ARM926T if BR2_arm926t
  103. default ARM10T if BR2_arm10t
  104. default ARM1136JF_S if BR2_arm1136jf_s
  105. default ARM1176JZ_S if BR2_arm1176jz_s
  106. default ARM1176JZF_S if BR2_arm1176jzf_s
  107. default ARM_SA110 if BR2_sa110
  108. default ARM_SA1100 if BR2_sa1100
  109. default ARM_XSCALE if BR2_xscale
  110. default ARM_IWMMXT if BR2_iwmmxt
  111. choice
  112. prompt "Target ABI"
  113. depends on BR2_arm || BR2_armeb
  114. default BR2_ARM_OABI
  115. help
  116. Application Binary Interface to use
  117. config BR2_ARM_OABI
  118. bool "OABI"
  119. config BR2_ARM_EABI
  120. bool "EABI"
  121. endchoice
  122. choice
  123. prompt "Target Architecture Variant"
  124. depends on BR2_mips || BR2_mipsel
  125. default BR2_mips_3 if BR2_mips
  126. default BR2_mips_1 if BR2_mipsel
  127. help
  128. Specific CPU variant to use
  129. 64bit cabable: 3, 4, 64, 64r2
  130. non-64bit capable: 1, 2, 32, 32r2
  131. config BR2_mips_1
  132. bool "mips I (generic)"
  133. config BR2_mips_2
  134. bool "mips II"
  135. config BR2_mips_3
  136. bool "mips III"
  137. config BR2_mips_4
  138. bool "mips IV"
  139. config BR2_mips_32
  140. bool "mips 32"
  141. config BR2_mips_32r2
  142. bool "mips 32r2"
  143. config BR2_mips_64
  144. bool "mips 64"
  145. config BR2_mips_64r2
  146. bool "mips 64r2"
  147. config BR2_mips_16
  148. bool "mips 16"
  149. endchoice
  150. choice
  151. prompt "Target ABI"
  152. depends on BR2_mips || BR2_mipsel
  153. default BR2_MIPS_OABI32 if BR_mips_32 || BR_mips_32r2
  154. default BR2_MIPS_ABI32 if BR_mips_64 || BR_mips_64r2
  155. help
  156. Application Binary Interface to use
  157. config BR2_MIPS_OABI32
  158. bool "o32"
  159. config BR2_MIPS_ABI32
  160. bool "n32"
  161. depends on BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
  162. config BR2_MIPS_EABI
  163. bool "eabi"
  164. depends on BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
  165. config BR2_MIPS_ABI64
  166. bool "n64"
  167. depends on BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
  168. config BR2_MIPS_OABI64
  169. bool "o64"
  170. depends on BR2_mips_3 || BR2_mips_4 || BR2_mips_64 || BR2_mips_64r2 || BR2_mips_16
  171. config BR2_MIPS_ABI_none
  172. bool "unspecified"
  173. depends on BR2_mips_16
  174. help
  175. Unspecified ABI leaves ABI selection blank.
  176. endchoice
  177. choice
  178. prompt "Target Architecture Variant"
  179. depends on BR2_sh
  180. default BR2_sh4
  181. help
  182. Specific CPU variant to use
  183. config BR2_sh2a_nofpueb
  184. bool "sh2a_nofpueb"
  185. config BR2_sh2eb
  186. bool "sh2eb"
  187. config BR2_sh3
  188. bool "sh3"
  189. config BR2_sh3eb
  190. bool "sh3eb"
  191. config BR2_sh4
  192. bool "sh4"
  193. config BR2_sh4eb
  194. bool "sh4eb"
  195. endchoice
  196. #
  197. # gcc builds libstdc++ differently depending on the
  198. # host tuplet given to it, so let people choose
  199. #
  200. choice
  201. prompt "Target Architecture Variant"
  202. depends on BR2_i386
  203. default BR2_x86_i386
  204. help
  205. Specific CPU variant to use
  206. config BR2_x86_i386
  207. bool "i386"
  208. config BR2_x86_i486
  209. bool "i486"
  210. config BR2_x86_i586
  211. bool "i586"
  212. config BR2_x86_i686
  213. bool "i686"
  214. config BR2_x86_pentiumpro
  215. bool "pentium pro"
  216. config BR2_x86_pentium_mmx
  217. bool "pentium MMX"
  218. config BR2_x86_pentium_m
  219. bool "pentium mobile"
  220. config BR2_x86_pentium2
  221. bool "pentium2"
  222. config BR2_x86_pentium3
  223. bool "pentium3"
  224. config BR2_x86_pentium4
  225. bool "pentium4"
  226. config BR2_x86_prescott
  227. bool "prescott"
  228. config BR2_x86_nocona
  229. bool "nocona"
  230. config BR2_x86_core2
  231. bool "core2"
  232. config BR2_x86_k6
  233. bool "k6"
  234. config BR2_x86_k6_2
  235. bool "k6-2"
  236. config BR2_x86_athlon
  237. bool "athlon"
  238. config BR2_x86_athlon_4
  239. bool "athlon-4"
  240. config BR2_x86_opteron
  241. bool "opteron"
  242. config BR2_x86_opteron_sse3
  243. bool "opteron w/ SSE3"
  244. config BR2_x86_barcelona
  245. bool "barcelona"
  246. config BR2_x86_geode
  247. bool "geode"
  248. config BR2_x86_c3
  249. bool "cyrix 3 (MMX + 3dNOW!)"
  250. config BR2_x86_winchip_c6
  251. bool "IDT winchip C6 (i486 + slow MMX)"
  252. config BR2_x86_winchip2
  253. bool "IDT winchip2 (i486 +MMX +SSE)"
  254. endchoice
  255. choice
  256. prompt "Target Architecture Variant"
  257. depends on BR2_x86_64
  258. default BR2_x86_64_generic
  259. help
  260. Specific CPU variant to use
  261. config BR2_x86_64_generic
  262. bool "generic"
  263. config BR2_x86_64_barcelona
  264. bool "barcelona"
  265. config BR2_x86_64_opteron_sse3
  266. bool "opteron w/ sse3"
  267. config BR2_x86_64_opteron
  268. bool "opteron"
  269. config BR2_x86_64_nocona
  270. bool "nocona"
  271. config BR2_x86_64_core2
  272. bool "core2"
  273. endchoice
  274. choice
  275. prompt "Target Architecture Variant"
  276. depends on BR2_alpha
  277. default BR2_alpha_21064
  278. help
  279. Specific CPU variant to use
  280. config BR2_alpha_21064
  281. bool "21064"
  282. config BR2_alpha_21164
  283. bool "21164"
  284. config BR2_alpha_21164a
  285. bool "21164a"
  286. config BR2_alpha_21164pc
  287. bool "21164pc"
  288. config BR2_alpha_21264
  289. bool "21264"
  290. config BR2_alpha_21264a
  291. bool "21264a"
  292. endchoice
  293. choice
  294. prompt "Target Architecture Variant"
  295. depends on BR2_sparc
  296. default BR2_sparc_v7
  297. help
  298. Specific CPU variant to use
  299. config BR2_sparc_v7
  300. bool "v7"
  301. config BR2_sparc_cypress
  302. bool "cypress"
  303. config BR2_sparc_v8
  304. bool "v8"
  305. config BR2_sparc_supersparc
  306. bool "supersparc"
  307. config BR2_sparc_sparclite
  308. bool "sparclite"
  309. config BR2_sparc_f930
  310. bool "f930"
  311. config BR2_sparc_f934
  312. bool "f934"
  313. config BR2_sparc_hypersparc
  314. bool "hypersparc"
  315. config BR2_sparc_sparclite86x
  316. bool "sparclite86x"
  317. config BR2_sparc_sparclet
  318. bool "sparclet"
  319. config BR2_sparc_tsc701
  320. bool "tsc701"
  321. config BR2_sparc_v9
  322. bool "v9"
  323. config BR2_sparc_v9a
  324. bool "v9a"
  325. config BR2_sparc_v9b
  326. bool "v9b"
  327. config BR2_sparc_ultrasparc
  328. bool "ultrasparc"
  329. config BR2_sparc_ultrasparc3
  330. bool "ultrasparc3"
  331. config BR2_sparc_niagara
  332. bool "niagara"
  333. endchoice
  334. choice
  335. prompt "Target Architecture Variant"
  336. depends on BR2_sparc64
  337. default BR2_sparc64_v9
  338. help
  339. Specific CPU variant to use
  340. config BR2_sparc64_v9
  341. bool "v9"
  342. config BR2_sparc64_v9a
  343. bool "v9a"
  344. config BR2_sparc64_v9b
  345. bool "v9b"
  346. config BR2_sparc64_ultrasparc
  347. bool "ultrasparc"
  348. config BR2_sparc64_ultrasparc3
  349. bool "ultrasparc3"
  350. config BR2_sparc64_niagara
  351. bool "niagara"
  352. endchoice
  353. config BR2_SPARC_TYPE
  354. string
  355. default V7 if BR2_sparc_v7 || BR2_sparc_cypress || BR2_sparc_sparclite || BR2_sparc_f930 || BR2_sparc_f934 || BR2_sparc_sparclite86x || BR2_sparc_sparclet || BR2_sparc_tsc701
  356. default V8 if BR2_sparc_v8 || BR2_sparc_supersparc || BR2_sparc_hypersparc
  357. default V9 if BR2_sparc_v9 || BR2_sparc_ultrasparc || BR2_sparc_ultrasparc3 || BR2_sparc_niagara || BR2_sparc64_v9 || BR2_sparc64_ultrasparc || BR2_sparc64_ultrasparc3 || BR2_sparc64_niagara
  358. default V9 if BR2_sparc_v9a || BR2_sparc64_v9a
  359. default V9B if BR2_sparc_v9b || BR2_sparc64_v9b
  360. choice
  361. prompt "Target Architecture Variant"
  362. depends on BR2_ia64
  363. default BR2_ia64_itanium2
  364. help
  365. Specific CPU variant to use
  366. config BR2_ia64_itanium1
  367. bool "itanium 1"
  368. config BR2_ia64_itanium2
  369. bool "itanium 2"
  370. endchoice
  371. choice
  372. prompt "Target Architecture Variant"
  373. depends on BR2_xtensa
  374. default BR2_xtensa_dc232b
  375. help
  376. Specific CPU variant to use
  377. config BR2_xtensa_custom
  378. bool "Custom Xtensa processor configuration"
  379. config BR2_xtensa_dc232a
  380. bool "dc232a - Diamond 232L Standard Core Rev.A (LE)"
  381. config BR2_xtensa_dc232b
  382. bool "dc232b - Diamond 232L Standard Core Rev.B (LE)"
  383. #config BR2_xtensa_s5000
  384. # bool "s5000 - Stretch S5000"
  385. endchoice
  386. config BR2_xtensa_custom_name
  387. string "Custom Xtensa processor configuration name"
  388. depends on BR2_xtensa_custom
  389. default ""
  390. help
  391. Name given to a custom Xtensa processor configuration.
  392. This is used to select the correct overlay.
  393. config BR2_xtensa_core_name
  394. string
  395. default BR2_xtensa_custom_name if BR2_xtensa_custom
  396. default "dc232a" if BR2_xtensa_dc232a
  397. default "dc232b" if BR2_xtensa_dc232b
  398. # default "s5000" if BR2_xtensa_s5000
  399. choice
  400. prompt "Target Architecture Variant"
  401. depends on BR2_powerpc
  402. default BR2_generic_powerpc
  403. help
  404. Specific CPU variant to use
  405. config BR2_generic_powerpc
  406. bool "generic"
  407. config BR2_powerpc_401
  408. bool "401"
  409. config BR2_powerpc_403
  410. bool "403"
  411. config BR2_powerpc_405
  412. bool "405"
  413. config BR2_powerpc_405fp
  414. bool "405 with FPU"
  415. config BR2_powerpc_440
  416. bool "440"
  417. config BR2_powerpc_440fp
  418. bool "440 with FPU"
  419. config BR2_powerpc_505
  420. bool "505"
  421. config BR2_powerpc_601
  422. bool "601"
  423. config BR2_powerpc_602
  424. bool "602"
  425. config BR2_powerpc_603
  426. bool "603"
  427. config BR2_powerpc_603e
  428. bool "603e"
  429. config BR2_powerpc_604
  430. bool "604"
  431. config BR2_powerpc_604e
  432. bool "604e"
  433. config BR2_powerpc_620
  434. bool "620"
  435. config BR2_powerpc_630
  436. bool "630"
  437. config BR2_powerpc_740
  438. bool "740"
  439. config BR2_powerpc_7400
  440. bool "7400"
  441. config BR2_powerpc_7450
  442. bool "7450"
  443. config BR2_powerpc_750
  444. bool "750"
  445. config BR2_powerpc_801
  446. bool "801"
  447. config BR2_powerpc_821
  448. bool "821"
  449. config BR2_powerpc_823
  450. bool "823"
  451. config BR2_powerpc_860
  452. bool "860"
  453. config BR2_powerpc_970
  454. bool "970"
  455. config BR2_powerpc_8540
  456. bool "8540"
  457. endchoice
  458. config BR2_ARCH
  459. string
  460. default "alpha" if BR2_alpha
  461. default "arm" if BR2_arm
  462. default "armeb" if BR2_armeb
  463. default "avr32" if BR2_avr32
  464. default "cris" if BR2_cris
  465. default "i386" if BR2_x86_i386
  466. default "i486" if BR2_x86_i486
  467. default "i586" if BR2_x86_i586
  468. default "i586" if BR2_x86_pentium_mmx
  469. default "i586" if BR2_x86_geode
  470. default "i686" if BR2_x86_i686
  471. default "i686" if BR2_x86_pentium2
  472. default "i686" if BR2_x86_pentium3
  473. default "i686" if BR2_x86_pentium4
  474. default "i686" if BR2_x86_pentium_m
  475. default "i686" if BR2_x86_pentiumpro
  476. default "i686" if BR2_x86_nocona
  477. default "i686" if BR2_x86_core2
  478. default "ia64" if BR2_ia64
  479. default "m68k" if BR2_m68k
  480. default "mips" if BR2_mips
  481. default "mipsel" if BR2_mipsel
  482. default "nios2" if BR2_nios2
  483. default "powerpc" if BR2_powerpc
  484. default "sh2a_nofpueb" if BR2_sh2a_nofpueb
  485. default "sh2eb" if BR2_sh2eb
  486. default "sh3" if BR2_sh3
  487. default "sh3eb" if BR2_sh3eb
  488. default "sh4" if BR2_sh4
  489. default "sh4eb" if BR2_sh4eb
  490. default "sh64" if BR2_sh64
  491. default "sparc" if BR2_sparc
  492. default "sparc64" if BR2_sparc64
  493. default "x86_64" if BR2_x86_64
  494. default "x86_64" if BR2_x86_64_generic
  495. default "x86_64" if BR2_x86_64_nocona
  496. default "x86_64" if BR2_x86_64_core2
  497. default "x86_64" if BR2_x86_64_opteron
  498. default "x86_64" if BR2_x86_64_opteron_sse3
  499. default "x86_64" if BR2_x86_64_barcelona
  500. default "xtensa" if BR2_xtensa
  501. config BR2_ENDIAN
  502. string
  503. default "LITTLE" if BR2_arm || BR2_cris || BR2_i386 || BR2_mipsel || \
  504. BR2_sh3 || BR2_sh4 || BR2_x86_64 || BR2_nios2 || \
  505. BR2_sh64
  506. default "BIG" if BR2_alpha || BR2_armeb || BR2_avr32 || BR2_m68k || BR2_mips || \
  507. BR2_powerpc || BR2_sh2a_nofpueb || BR2_sh2eb || \
  508. BR2_sh3eb || BR2_sh4eb || BR2_sparc || BR2_sparc64
  509. config BR2_GCC_TARGET_TUNE
  510. string
  511. default i386 if BR2_x86_i386
  512. default i486 if BR2_x86_i486
  513. default i586 if BR2_x86_i586
  514. default pentium-mmx if BR2_x86_pentium_mmx
  515. default i686 if BR2_x86_i686
  516. default pentiumpro if BR2_x86_pentiumpro
  517. default pentium-m if BR2_x86_pentium_m
  518. default pentium2 if BR2_x86_pentium2
  519. default pentium3 if BR2_x86_pentium3
  520. default pentium4 if BR2_x86_pentium4
  521. default prescott if BR2_x86_prescott
  522. default nocona if BR2_x86_nocona
  523. default core2 if BR2_x86_core2
  524. default k8 if BR2_x86_opteron
  525. default k8-sse3 if BR2_x86_opteron_sse3
  526. default barcelona if BR2_x86_barcelona
  527. default k6 if BR2_x86_k6
  528. default k6-2 if BR2_x86_k6_2
  529. default athlon if BR2_x86_athlon
  530. default athlon-4 if BR2_x86_athlon_4
  531. default winchip-c6 if BR2_x86_winchip_c6
  532. default winchip2 if BR2_x86_winchip2
  533. default c3 if BR2_x86_c3
  534. default geode if BR2_x86_geode
  535. default generic if BR2_x86_64_generic
  536. default nocona if BR2_x86_64_nocona
  537. default core2 if BR2_x86_64_core2
  538. default k8 if BR2_x86_64_opteron
  539. default k8-sse3 if BR2_x86_64_opteron_sse3
  540. default barcelona if BR2_x86_64_barcelona
  541. default arm600 if BR2_arm600
  542. default arm610 if BR2_arm610
  543. default arm620 if BR2_arm620
  544. default arm7tdmi if BR2_arm7tdmi
  545. default arm7tdmi if BR2_arm720t
  546. default arm7tdmi if BR2_arm740t
  547. default arm920 if BR2_arm920
  548. default arm920t if BR2_arm920t
  549. default arm922t if BR2_arm922t
  550. default arm9tdmi if BR2_arm926t
  551. default arm1136j-s if BR2_arm1136j_s
  552. default arm1136jf-s if BR2_arm1136jf_s
  553. default arm1176jz-s if BR2_arm1176jz_s
  554. default arm1176jzf-s if BR2_arm1176jzf_s
  555. default strongarm110 if BR2_sa110
  556. default strongarm1100 if BR2_sa1100
  557. default xscale if BR2_xscale
  558. default iwmmxt if BR2_iwmmxt
  559. default v0 if BR2_cris_unknown
  560. default v10 if BR2_cris_generic
  561. default v3 if BR2_cris_etrax_4
  562. default v8 if BR2_cris_etrax_100
  563. default v10 if BR2_cris_etrax_100lx
  564. default ev4 if BR2_alpha_21064
  565. default ev5 if BR2_alpha_21164
  566. default ev56 if BR2_alpha_21164a
  567. default pca56 if BR2_alpha_21164pc
  568. default ev6 if BR2_alpha_21264
  569. default ev67 if BR2_alpha_21264a
  570. # default itanium if BR2_ia64_itanium1
  571. # default itanium2 if BR2_ia64_itanium2
  572. default 68000 if BR2_m68k_68000
  573. default 68010 if BR2_m68k_68010
  574. default 68020 if BR2_m68k_68020
  575. default 68030 if BR2_m68k_68030
  576. default 68040 if BR2_m68k_68040
  577. default 68060 if BR2_m68k_68060
  578. default mips1 if BR2_mips_1
  579. default mips2 if BR2_mips_2
  580. default mips3 if BR2_mips_3
  581. default mips4 if BR2_mips_4
  582. default mips32 if BR2_mips_32
  583. default mips32r2 if BR2_mips_32r2
  584. default mips64 if BR2_mips_64
  585. default mips64r2 if BR2_mips_64r2
  586. default mips16 if BR2_mips_16
  587. default 401 if BR2_powerpc_401
  588. default 403 if BR2_powerpc_403
  589. default 405 if BR2_powerpc_405
  590. default 405fp if BR2_powerpc_405fp
  591. default 440 if BR2_powerpc_440
  592. default 440fp if BR2_powerpc_440fp
  593. default 505 if BR2_powerpc_505
  594. default 601 if BR2_powerpc_601
  595. default 602 if BR2_powerpc_602
  596. default 603 if BR2_powerpc_603
  597. default 603e if BR2_powerpc_603e
  598. default 604 if BR2_powerpc_604
  599. default 604e if BR2_powerpc_604e
  600. default 620 if BR2_powerpc_620
  601. default 630 if BR2_powerpc_630
  602. default 740 if BR2_powerpc_740
  603. default 7400 if BR2_powerpc_7400
  604. default 7450 if BR2_powerpc_7450
  605. default 750 if BR2_powerpc_750
  606. default 801 if BR2_powerpc_801
  607. default 821 if BR2_powerpc_821
  608. default 823 if BR2_powerpc_823
  609. default 860 if BR2_powerpc_860
  610. default 970 if BR2_powerpc_970
  611. default 8540 if BR2_powerpc_8540
  612. default v7 if BR2_sparc_v7
  613. default cypress if BR2_sparc_cypress
  614. default v8 if BR2_sparc_v8
  615. default supersparc if BR2_sparc_supersparc
  616. default hypersparc if BR2_sparc_hypersparc
  617. default sparclite if BR2_sparc_sparclite
  618. default f930 if BR2_sparc_f930
  619. default f934 if BR2_sparc_f934
  620. default sparclite86x if BR2_sparc_sparclite86x
  621. default sparclet if BR2_sparc_sparclet
  622. default tsc701 if BR2_sparc_tsc701
  623. default v9 if BR2_sparc_v9 || BR2_sparc64_v9
  624. default v9 if BR2_sparc_v9a || BR2_sparc64_v9a
  625. default v9 if BR2_sparc_v9b || BR2_sparc64_v9b
  626. default ultrasparc if BR2_sparc_ultrasparc || BR2_sparc64_ultrasparc
  627. default ultrasparc3 if BR2_sparc_ultrasparc3 || BR2_sparc64_ultrasparc3
  628. default niagara if BR2_sparc_niagara || BR2_sparc64_niagara
  629. config BR2_GCC_TARGET_ARCH
  630. string
  631. default i386 if BR2_x86_i386
  632. default i486 if BR2_x86_i486
  633. default i586 if BR2_x86_i586
  634. default pentium-mmx if BR2_x86_pentium_mmx
  635. default i686 if BR2_x86_i686
  636. default pentiumpro if BR2_x86_pentiumpro
  637. default pentium-m if BR2_x86_pentium_m
  638. default pentium2 if BR2_x86_pentium2
  639. default pentium3 if BR2_x86_pentium3
  640. default pentium4 if BR2_x86_pentium4
  641. default prescott if BR2_x86_prescott
  642. default nocona if BR2_x86_nocona
  643. default core2 if BR2_x86_core2
  644. default k8 if BR2_x86_opteron
  645. default k8-sse3 if BR2_x86_opteron_sse3
  646. default barcelona if BR2_x86_barcelona
  647. default k6 if BR2_x86_k6
  648. default k6-2 if BR2_x86_k6_2
  649. default athlon if BR2_x86_athlon
  650. default athlon-4 if BR2_x86_athlon_4
  651. default winchip-c6 if BR2_x86_winchip_c6
  652. default winchip2 if BR2_x86_winchip2
  653. default c3 if BR2_x86_c3
  654. default geode if BR2_x86_geode
  655. default armv4t if BR2_arm7tdmi
  656. default armv3 if BR2_arm610
  657. default armv3 if BR2_arm710
  658. default armv4t if BR2_arm720t
  659. default armv4t if BR2_arm920t
  660. default armv4t if BR2_arm922t
  661. default armv5te if BR2_arm926t
  662. default armv5t if BR2_arm10t
  663. default armv6j if BR2_arm1136jf_s
  664. default armv6zk if BR2_arm1176jz_s
  665. default armv6zk if BR2_arm1176jzf_s
  666. default armv4 if BR2_sa110
  667. default armv4 if BR2_sa1100
  668. default armv5te if BR2_xscale
  669. default iwmmxt if BR2_iwmmxt
  670. default v0 if BR2_cris_unknown
  671. default v10 if BR2_cris_generic
  672. default v3 if BR2_cris_etrax_4
  673. default v8 if BR2_cris_etrax_100
  674. default v10 if BR2_cris_etrax_100lx
  675. default 68000 if BR2_m68k_68000
  676. default 68010 if BR2_m68k_68010
  677. default 68020 if BR2_m68k_68020
  678. default 68030 if BR2_m68k_68030
  679. default 68040 if BR2_m68k_68040
  680. default 68060 if BR2_m68k_68060
  681. config BR2_GCC_TARGET_ABI
  682. string
  683. default apcs-gnu if BR2_ARM_OABI
  684. default atpcs if BR2_arm_dunno
  685. default aapcs if BR2_arm_dunno
  686. default aapcs-linux if BR2_ARM_EABI
  687. default 32 if BR2_MIPS_OABI32
  688. default n32 if BR2_MIPS_ABI32
  689. default eabi if BR2_MIPS_EABI
  690. default o64 if BR2_MIPS_OABI64
  691. default n64 if BR2_MIPS_ABI64
  692. default mmixware if BR2_mmix && BR2_MMIX_ABI_native
  693. default gnu if BR2_mmix && !BR2_MMIX_ABI_native
  694. default altivec if BR2_powerpc && BR2_PPC_ABI_altivec
  695. default no-altivec if BR2_powerpc && BR2_PPC_ABI_no-altivec
  696. default spe if BR2_powerpc && BR2_PPC_ABI_spe
  697. default no-spe if BR2_powerpc && BR2_PPC_ABI_no-spe
  698. default ibmlongdouble if BR2_powerpc && BR2_PPC_ABI_ibmlongdouble
  699. default ieeelongdouble if BR2_powerpc && BR2_PPC_ABI_ieeelongdouble