Config.in.options 15 KB

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