Config.in.arch 18 KB

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