Config.in.options 15 KB

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