Config.in.arch 18 KB

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