Config.in.options 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591
  1. if BR2_TOOLCHAIN_EXTERNAL_CUSTOM
  2. config BR2_TOOLCHAIN_EXTERNAL_PREFIX
  3. default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX
  4. config BR2_PACKAGE_PROVIDES_TOOLCHAIN_EXTERNAL
  5. default "toolchain-external-custom"
  6. config BR2_TOOLCHAIN_EXTERNAL_URL
  7. string "Toolchain URL"
  8. depends on BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD
  9. help
  10. URL of the custom toolchain tarball to download and install.
  11. config BR2_TOOLCHAIN_EXTERNAL_REL_BIN_PATH
  12. string "Toolchain relative binary path"
  13. default "bin"
  14. depends on BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD
  15. help
  16. Path to where the binaries (e.g. the compiler) can be found,
  17. relative to the downloaded toolchain root directory. The
  18. default is "bin" and is correct for most toolchains.
  19. config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX
  20. string "Toolchain prefix"
  21. default "$(ARCH)-linux"
  22. help
  23. Component name prefix used by your external toolchain.
  24. Typically, this is the target tuple, e.g. something that
  25. looks like: $(ARCH)-unknown-linux-gnu.
  26. If unsure, look at the "bin" directory of your toolchain and
  27. note the part of component name before the last dash, i.e. if
  28. you call the toolchain's gcc as $(ARCH)-unknown-linux-gnu-gcc,
  29. the prefix is $(ARCH)-unknown-linux-gnu.
  30. Note that Buildroot toolchains have shorter aliases that look
  31. like $(ARCH)-linux, as symlinks to the full-tuple components,
  32. so you can leave this option at default value if you use them
  33. as external toolchain.
  34. choice
  35. bool "External toolchain gcc version"
  36. help
  37. Set to the gcc version that is used by your external
  38. toolchain.
  39. config BR2_TOOLCHAIN_EXTERNAL_GCC_13
  40. bool "13.x"
  41. select BR2_TOOLCHAIN_GCC_AT_LEAST_13
  42. config BR2_TOOLCHAIN_EXTERNAL_GCC_12
  43. bool "12.x"
  44. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_13
  45. select BR2_TOOLCHAIN_GCC_AT_LEAST_12
  46. config BR2_TOOLCHAIN_EXTERNAL_GCC_11
  47. bool "11.x"
  48. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_12
  49. select BR2_TOOLCHAIN_GCC_AT_LEAST_11
  50. config BR2_TOOLCHAIN_EXTERNAL_GCC_10
  51. bool "10.x"
  52. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_11
  53. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  54. config BR2_TOOLCHAIN_EXTERNAL_GCC_9
  55. bool "9.x"
  56. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_10
  57. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  58. config BR2_TOOLCHAIN_EXTERNAL_GCC_8
  59. bool "8.x"
  60. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_9
  61. select BR2_TOOLCHAIN_GCC_AT_LEAST_8
  62. config BR2_TOOLCHAIN_EXTERNAL_GCC_7
  63. bool "7.x"
  64. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_8
  65. select BR2_TOOLCHAIN_GCC_AT_LEAST_7
  66. config BR2_TOOLCHAIN_EXTERNAL_GCC_6
  67. bool "6.x"
  68. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_7
  69. select BR2_TOOLCHAIN_GCC_AT_LEAST_6
  70. config BR2_TOOLCHAIN_EXTERNAL_GCC_5
  71. bool "5.x"
  72. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_6
  73. select BR2_TOOLCHAIN_GCC_AT_LEAST_5
  74. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_9
  75. bool "4.9.x"
  76. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_5
  77. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
  78. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_8
  79. bool "4.8.x"
  80. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_9
  81. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  82. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_7
  83. bool "4.7.x"
  84. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8
  85. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
  86. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_6
  87. bool "4.6.x"
  88. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8
  89. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_6
  90. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_5
  91. bool "4.5.x"
  92. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8
  93. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_5
  94. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_4
  95. bool "4.4.x"
  96. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8
  97. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_4
  98. config BR2_TOOLCHAIN_EXTERNAL_GCC_4_3
  99. bool "4.3.x"
  100. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8
  101. select BR2_TOOLCHAIN_GCC_AT_LEAST_4_3
  102. config BR2_TOOLCHAIN_EXTERNAL_GCC_OLD
  103. bool "older"
  104. depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8
  105. help
  106. Use this option if your GCC version is older than any of the
  107. above.
  108. Note that the Buildroot community doesn't do any testing with
  109. such old toolchains. Some packages may fail to build in
  110. surprising ways, or the generated root filesystem may not
  111. work at all. Use such old toolchains at your own risk.
  112. endchoice
  113. comment "GCC older than 4.8 is not tested by Buildroot. Use at your own risk."
  114. depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  115. choice
  116. bool "External toolchain kernel headers series"
  117. default BR2_TOOLCHAIN_EXTERNAL_HEADERS_REALLY_OLD
  118. help
  119. Set to the kernel headers version that were used to build
  120. this external toolchain.
  121. This is used to hide/show some packages that have strict
  122. requirements on the version of kernel headers.
  123. If unsure what version your toolchain is using, you can look
  124. at the value of LINUX_VERSION_CODE in linux/version.h in your
  125. toolchain. The Linux version is M.m.p, with:
  126. M = ( LINUX_VERSION_CODE >> 16 ) & 0xFF
  127. m = ( LINUX_VERSION_CODE >> 8 ) & 0xFF
  128. p = ( LINUX_VERSION_CODE >> 0 ) & 0xFF
  129. If your toolchain uses headers newer than the latest version
  130. in the choice, then select the latest version.
  131. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_6
  132. bool "6.6.x or later"
  133. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_6
  134. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_5
  135. bool "6.5.x"
  136. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_5
  137. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_4
  138. bool "6.4.x"
  139. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_4
  140. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_3
  141. bool "6.3.x"
  142. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_3
  143. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_2
  144. bool "6.2.x"
  145. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_2
  146. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_1
  147. bool "6.1.x"
  148. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_1
  149. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_6_0
  150. bool "6.0.x"
  151. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_6_0
  152. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_19
  153. bool "5.19.x"
  154. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_19
  155. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_18
  156. bool "5.18.x"
  157. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_18
  158. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_17
  159. bool "5.17.x"
  160. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_17
  161. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_16
  162. bool "5.16.x"
  163. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_16
  164. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_15
  165. bool "5.15.x"
  166. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_15
  167. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_14
  168. bool "5.14.x"
  169. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_14
  170. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_13
  171. bool "5.13.x"
  172. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_13
  173. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_12
  174. bool "5.12.x"
  175. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_12
  176. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_11
  177. bool "5.11"
  178. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_11
  179. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_10
  180. bool "5.10.x"
  181. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_10
  182. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_9
  183. bool "5.9.x"
  184. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_9
  185. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_8
  186. bool "5.8.x"
  187. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_8
  188. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_7
  189. bool "5.7.x"
  190. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_7
  191. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_6
  192. bool "5.6.x"
  193. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_6
  194. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_5
  195. bool "5.5.x"
  196. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_5
  197. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_4
  198. bool "5.4.x"
  199. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  200. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_3
  201. bool "5.3.x"
  202. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_3
  203. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_2
  204. bool "5.2.x"
  205. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_2
  206. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_1
  207. bool "5.1.x"
  208. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_1
  209. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_5_0
  210. bool "5.0.x"
  211. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
  212. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_20
  213. bool "4.20.x"
  214. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_20
  215. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_19
  216. bool "4.19.x"
  217. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19
  218. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_18
  219. bool "4.18.x"
  220. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_18
  221. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_17
  222. bool "4.17.x"
  223. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_17
  224. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_16
  225. bool "4.16.x"
  226. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_16
  227. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_15
  228. bool "4.15.x"
  229. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_15
  230. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_14
  231. bool "4.14.x"
  232. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_14
  233. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_13
  234. bool "4.13.x"
  235. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_13
  236. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_12
  237. bool "4.12.x"
  238. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_12
  239. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_11
  240. bool "4.11.x"
  241. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_11
  242. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_10
  243. bool "4.10.x"
  244. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_10
  245. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_9
  246. bool "4.9.x"
  247. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  248. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_8
  249. bool "4.8.x"
  250. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_8
  251. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_7
  252. bool "4.7.x"
  253. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
  254. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_6
  255. bool "4.6.x"
  256. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_6
  257. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_5
  258. bool "4.5.x"
  259. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_5
  260. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_4
  261. bool "4.4.x"
  262. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_4
  263. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_3
  264. bool "4.3.x"
  265. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_3
  266. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_2
  267. bool "4.2.x"
  268. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_2
  269. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_1
  270. bool "4.1.x"
  271. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_1
  272. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_0
  273. bool "4.0.x"
  274. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
  275. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_19
  276. bool "3.19.x"
  277. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_19
  278. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_18
  279. bool "3.18.x"
  280. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_18
  281. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_17
  282. bool "3.17.x"
  283. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_17
  284. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_16
  285. bool "3.16.x"
  286. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_16
  287. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_15
  288. bool "3.15.x"
  289. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_15
  290. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_14
  291. bool "3.14.x"
  292. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_14
  293. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_13
  294. bool "3.13.x"
  295. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  296. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_12
  297. bool "3.12.x"
  298. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
  299. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_11
  300. bool "3.11.x"
  301. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_11
  302. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_10
  303. bool "3.10.x"
  304. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_10
  305. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_9
  306. bool "3.9.x"
  307. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_9
  308. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_8
  309. bool "3.8.x"
  310. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_8
  311. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_7
  312. bool "3.7.x"
  313. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
  314. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_6
  315. bool "3.6.x"
  316. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_6
  317. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_5
  318. bool "3.5.x"
  319. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_5
  320. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_4
  321. bool "3.4.x"
  322. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4
  323. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_3
  324. bool "3.3.x"
  325. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_3
  326. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_2
  327. bool "3.2.x"
  328. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_2
  329. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_1
  330. bool "3.1.x"
  331. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_1
  332. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_3_0
  333. bool "3.0.x"
  334. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0
  335. config BR2_TOOLCHAIN_EXTERNAL_HEADERS_REALLY_OLD
  336. bool "2.6.x"
  337. endchoice
  338. comment "Kernel headers older than 3.13 is not tested by Buildroot. Use at your own risk."
  339. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_13
  340. choice
  341. prompt "External toolchain C library"
  342. default BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC
  343. config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC
  344. bool "uClibc/uClibc-ng"
  345. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  346. help
  347. Select this option if your external toolchain uses the
  348. uClibc (available from http://www.uclibc.org/)
  349. or uClibc-ng (available from http://www.uclibc-ng.org)
  350. C library.
  351. config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC
  352. bool "glibc"
  353. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  354. help
  355. Select this option if your external toolchain uses the GNU C
  356. library (available from https://www.gnu.org/software/libc/).
  357. config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_MUSL
  358. bool "musl (experimental)"
  359. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  360. help
  361. Select this option if your external toolchain uses the
  362. 'musl' C library, available from http://www.musl-libc.org/.
  363. endchoice
  364. if BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC
  365. config BR2_TOOLCHAIN_EXTERNAL_WCHAR
  366. bool "Toolchain has WCHAR support?"
  367. select BR2_USE_WCHAR
  368. help
  369. Select this option if your external toolchain supports
  370. WCHAR. If you don't know, leave the default value, Buildroot
  371. will tell you if it's correct or not.
  372. config BR2_TOOLCHAIN_EXTERNAL_LOCALE
  373. bool "Toolchain has locale support?"
  374. select BR2_TOOLCHAIN_EXTERNAL_WCHAR
  375. select BR2_ENABLE_LOCALE
  376. help
  377. Select this option if your external toolchain has locale
  378. support. If you don't know, leave the default value,
  379. Buildroot will tell you if it's correct or not.
  380. config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS
  381. bool "Toolchain has threads support?"
  382. default y
  383. select BR2_TOOLCHAIN_HAS_THREADS
  384. help
  385. Select this option if your external toolchain has thread
  386. support. If you don't know, leave the default value,
  387. Buildroot will tell you if it's correct or not.
  388. if BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS
  389. config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG
  390. bool "Toolchain has threads debugging support?"
  391. default y
  392. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  393. help
  394. Select this option if your external toolchain has thread
  395. debugging support. If you don't know, leave the default
  396. value, Buildroot will tell you if it's correct or not.
  397. config BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_NPTL
  398. bool "Toolchain has NPTL threads support?"
  399. default y
  400. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  401. help
  402. Select this option if your external toolchain uses the NPTL
  403. (Native Posix Thread Library) implementation of Posix
  404. threads. If you don't know, leave the default value,
  405. Buildroot will tell you if it's correct or not.
  406. endif # BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS
  407. endif # BR2_TOOLCHAIN_EXTERNAL_CUSTOM_UCLIBC
  408. config BR2_TOOLCHAIN_EXTERNAL_HAS_SSP
  409. bool "Toolchain has SSP support?"
  410. default y if BR2_TOOLCHAIN_EXTERNAL_GLIBC
  411. default y if BR2_TOOLCHAIN_EXTERNAL_MUSL
  412. select BR2_TOOLCHAIN_HAS_SSP
  413. help
  414. Select this option if your external toolchain has Stack
  415. Smashing Protection support enabled. If you don't know,
  416. leave the default value, Buildroot will tell you if it's
  417. correct or not.
  418. config BR2_TOOLCHAIN_EXTERNAL_HAS_SSP_STRONG
  419. bool "Toolchain has SSP strong support?"
  420. default y if BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 && BR2_TOOLCHAIN_EXTERNAL_GLIBC
  421. default y if BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 && BR2_TOOLCHAIN_EXTERNAL_MUSL
  422. depends on BR2_TOOLCHAIN_EXTERNAL_HAS_SSP
  423. select BR2_TOOLCHAIN_HAS_SSP_STRONG
  424. help
  425. Select this option if your external toolchain has strong
  426. Stack Smashing Protection support enabled. If you don't
  427. know, leave the default value, Buildroot will tell you if
  428. it's correct or not.
  429. config BR2_TOOLCHAIN_EXTERNAL_INET_RPC
  430. bool "Toolchain has RPC support?"
  431. default y if BR2_TOOLCHAIN_EXTERNAL_GLIBC
  432. depends on !BR2_TOOLCHAIN_EXTERNAL_MUSL
  433. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  434. help
  435. Select this option if your external toolchain supports
  436. RPC. If you don't know, leave the default value, Buildroot
  437. will tell you if it's correct or not.
  438. config BR2_TOOLCHAIN_EXTERNAL_CXX
  439. bool "Toolchain has C++ support?"
  440. select BR2_INSTALL_LIBSTDCPP
  441. help
  442. Select this option if your external toolchain has C++
  443. support. If you don't know, leave the default value,
  444. Buildroot will tell you if it's correct or not.
  445. config BR2_TOOLCHAIN_EXTERNAL_DLANG
  446. bool "Toolchain has D support?"
  447. select BR2_TOOLCHAIN_HAS_DLANG
  448. help
  449. Select this option if your external toolchain has D
  450. support.
  451. config BR2_TOOLCHAIN_EXTERNAL_FORTRAN
  452. bool "Toolchain has Fortran support?"
  453. select BR2_TOOLCHAIN_HAS_FORTRAN
  454. help
  455. Select this option if your external toolchain has Fortran
  456. support. If you don't know, leave the default value,
  457. Buildroot will tell you if it's correct or not.
  458. config BR2_TOOLCHAIN_EXTERNAL_OPENMP
  459. bool "Toolchain has OpenMP support?"
  460. select BR2_TOOLCHAIN_HAS_OPENMP
  461. help
  462. Select this option if your external toolchain has OpenMP
  463. support. If you don't know, leave the default value,
  464. Buildroot will tell you if it's correct or not.
  465. endif