Config.in.options 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302
  1. # This file was auto-generated by support/scripts/gen-bootlin-toolchains
  2. # Do not edit
  3. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCH_SUPPORTS
  4. bool
  5. default y if BR2_aarch64
  6. default y if BR2_aarch64_be
  7. default y if BR2_arcle && BR2_arc750d
  8. default y if BR2_arcle && BR2_archs38
  9. default y if BR2_ARM_CPU_ARMV5 && BR2_ARM_EABI
  10. default y if BR2_ARM_CPU_ARMV6 && BR2_ARM_EABIHF
  11. default y if BR2_ARM_CPU_ARMV7A && BR2_ARM_EABIHF
  12. default y if BR2_ARM_CPU_ARMV7M
  13. default y if BR2_m68k_m68k
  14. default y if BR2_m68k_cf
  15. default y if BR2_microblazebe
  16. default y if BR2_microblazeel
  17. default y if BR2_mips && BR2_mips_32 && !BR2_MIPS_SOFT_FLOAT
  18. default y if BR2_mipsel && BR2_mips_32 && !BR2_MIPS_SOFT_FLOAT
  19. default y if BR2_mipsel && BR2_mips_32r5 && !BR2_MIPS_SOFT_FLOAT
  20. default y if BR2_mipsel && BR2_mips_32r6 && !BR2_MIPS_SOFT_FLOAT
  21. default y if BR2_mips64 && BR2_mips_64 && !BR2_MIPS_SOFT_FLOAT
  22. default y if BR2_mips64 && BR2_mips_64 && BR2_MIPS_NABI32 && !BR2_MIPS_SOFT_FLOAT
  23. default y if BR2_mips64el && BR2_mips_64 && BR2_MIPS_NABI32 && !BR2_MIPS_SOFT_FLOAT
  24. default y if BR2_mips64el && BR2_mips_64r6 && BR2_MIPS_NABI32 && !BR2_MIPS_SOFT_FLOAT
  25. default y if BR2_nios2
  26. default y if BR2_or1k
  27. default y if BR2_powerpc && BR2_powerpc_440fp
  28. default y if BR2_powerpc && BR2_powerpc_e300c3
  29. default y if BR2_powerpc && BR2_powerpc_e500mc
  30. default y if BR2_powerpc64 && BR2_powerpc_e5500
  31. default y if BR2_powerpc64 && BR2_powerpc_e6500
  32. default y if BR2_powerpc64 && BR2_powerpc_power8
  33. default y if BR2_powerpc64le && BR2_powerpc_power8
  34. default y if BR2_riscv && BR2_riscv_g && BR2_RISCV_32 && BR2_RISCV_ABI_ILP32D
  35. default y if BR2_riscv && BR2_riscv_g && BR2_RISCV_64 && BR2_RISCV_ABI_LP64
  36. default y if BR2_sh && BR2_sh4
  37. default y if BR2_sh && BR2_sh4aeb
  38. default y if BR2_sparc64 && BR2_sparc_v9
  39. default y if BR2_sparc && BR2_sparc_v8
  40. default y if BR2_x86_64 && BR2_X86_CPU_HAS_MMX && BR2_X86_CPU_HAS_SSE && BR2_X86_CPU_HAS_SSE2 && BR2_X86_CPU_HAS_SSE3 && BR2_X86_CPU_HAS_SSSE3 && BR2_X86_CPU_HAS_SSE4 && BR2_X86_CPU_HAS_SSE42
  41. default y if BR2_i386 && BR2_X86_CPU_HAS_MMX && BR2_X86_CPU_HAS_SSE && BR2_X86_CPU_HAS_SSE2 && BR2_X86_CPU_HAS_SSE3 && BR2_X86_CPU_HAS_SSSE3
  42. default y if BR2_i386 && !BR2_x86_i486 && !BR2_x86_i586 && !BR2_x86_x1000
  43. default y if BR2_xtensa && BR2_xtensa_fsf
  44. if BR2_TOOLCHAIN_EXTERNAL_BOOTLIN
  45. config BR2_TOOLCHAIN_EXTERNAL_PREFIX
  46. default "$(ARCH)-linux"
  47. config BR2_PACKAGE_PROVIDES_TOOLCHAIN_EXTERNAL
  48. default "toolchain-external-bootlin"
  49. choice
  50. prompt "Bootlin toolchain variant"
  51. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_BLEEDING_EDGE
  52. bool "aarch64 glibc bleeding-edge 2020.08-1"
  53. depends on BR2_aarch64
  54. depends on BR2_USE_MMU
  55. depends on !BR2_STATIC_LIBS
  56. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  57. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  58. select BR2_INSTALL_LIBSTDCPP
  59. select BR2_TOOLCHAIN_HAS_FORTRAN
  60. select BR2_TOOLCHAIN_HAS_SSP
  61. select BR2_TOOLCHAIN_HAS_THREADS
  62. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  63. select BR2_TOOLCHAIN_HAS_THREADS
  64. select BR2_TOOLCHAIN_HAS_THREADS
  65. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  66. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  67. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  68. help
  69. Bootlin toolchain for the aarch64 architecture, using the
  70. glibc C library. This is a bleeding-edge version, which
  71. means it is using the latest versions of gcc, gdb and
  72. binutils.
  73. https://toolchains.bootlin.com/
  74. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_GLIBC_STABLE
  75. bool "aarch64 glibc stable 2020.08-1"
  76. depends on BR2_aarch64
  77. depends on BR2_USE_MMU
  78. depends on !BR2_STATIC_LIBS
  79. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  80. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  81. select BR2_INSTALL_LIBSTDCPP
  82. select BR2_TOOLCHAIN_HAS_FORTRAN
  83. select BR2_TOOLCHAIN_HAS_SSP
  84. select BR2_TOOLCHAIN_HAS_THREADS
  85. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  86. select BR2_TOOLCHAIN_HAS_THREADS
  87. select BR2_TOOLCHAIN_HAS_THREADS
  88. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  89. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  90. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  91. help
  92. Bootlin toolchain for the aarch64 architecture, using the
  93. glibc C library. This is a stable version, which means it
  94. is using stable and proven versions of gcc, gdb and
  95. binutils.
  96. https://toolchains.bootlin.com/
  97. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_MUSL_BLEEDING_EDGE
  98. bool "aarch64 musl bleeding-edge 2020.08-1"
  99. depends on BR2_aarch64
  100. depends on BR2_USE_MMU
  101. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  102. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  103. select BR2_INSTALL_LIBSTDCPP
  104. select BR2_TOOLCHAIN_HAS_FORTRAN
  105. select BR2_TOOLCHAIN_HAS_SSP
  106. select BR2_TOOLCHAIN_HAS_THREADS
  107. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  108. select BR2_TOOLCHAIN_HAS_THREADS
  109. select BR2_TOOLCHAIN_HAS_THREADS
  110. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  111. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  112. help
  113. Bootlin toolchain for the aarch64 architecture, using the
  114. musl C library. This is a bleeding-edge version, which
  115. means it is using the latest versions of gcc, gdb and
  116. binutils.
  117. https://toolchains.bootlin.com/
  118. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_MUSL_STABLE
  119. bool "aarch64 musl stable 2020.08-1"
  120. depends on BR2_aarch64
  121. depends on BR2_USE_MMU
  122. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  123. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19
  124. select BR2_INSTALL_LIBSTDCPP
  125. select BR2_TOOLCHAIN_HAS_FORTRAN
  126. select BR2_TOOLCHAIN_HAS_SSP
  127. select BR2_TOOLCHAIN_HAS_THREADS
  128. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  129. select BR2_TOOLCHAIN_HAS_THREADS
  130. select BR2_TOOLCHAIN_HAS_THREADS
  131. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  132. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  133. help
  134. Bootlin toolchain for the aarch64 architecture, using the
  135. musl C library. This is a stable version, which means it is
  136. using stable and proven versions of gcc, gdb and binutils.
  137. https://toolchains.bootlin.com/
  138. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_UCLIBC_BLEEDING_EDGE
  139. bool "aarch64 uclibc bleeding-edge 2020.08-1"
  140. depends on BR2_aarch64
  141. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  142. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  143. select BR2_USE_WCHAR
  144. select BR2_ENABLE_LOCALE
  145. select BR2_INSTALL_LIBSTDCPP
  146. select BR2_TOOLCHAIN_HAS_FORTRAN
  147. select BR2_TOOLCHAIN_HAS_THREADS
  148. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  149. select BR2_TOOLCHAIN_HAS_THREADS
  150. select BR2_TOOLCHAIN_HAS_THREADS
  151. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  152. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  153. help
  154. Bootlin toolchain for the aarch64 architecture, using the
  155. uclibc C library. This is a bleeding-edge version, which
  156. means it is using the latest versions of gcc, gdb and
  157. binutils.
  158. https://toolchains.bootlin.com/
  159. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64_UCLIBC_STABLE
  160. bool "aarch64 uclibc stable 2020.08-1"
  161. depends on BR2_aarch64
  162. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  163. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  164. select BR2_USE_WCHAR
  165. select BR2_ENABLE_LOCALE
  166. select BR2_INSTALL_LIBSTDCPP
  167. select BR2_TOOLCHAIN_HAS_FORTRAN
  168. select BR2_TOOLCHAIN_HAS_THREADS
  169. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  170. select BR2_TOOLCHAIN_HAS_THREADS
  171. select BR2_TOOLCHAIN_HAS_THREADS
  172. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  173. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  174. help
  175. Bootlin toolchain for the aarch64 architecture, using the
  176. uclibc C library. This is a stable version, which means it
  177. is using stable and proven versions of gcc, gdb and
  178. binutils.
  179. https://toolchains.bootlin.com/
  180. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_GLIBC_BLEEDING_EDGE
  181. bool "aarch64be glibc bleeding-edge 2020.08-1"
  182. depends on BR2_aarch64_be
  183. depends on BR2_USE_MMU
  184. depends on !BR2_STATIC_LIBS
  185. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  186. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  187. select BR2_INSTALL_LIBSTDCPP
  188. select BR2_TOOLCHAIN_HAS_FORTRAN
  189. select BR2_TOOLCHAIN_HAS_SSP
  190. select BR2_TOOLCHAIN_HAS_THREADS
  191. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  192. select BR2_TOOLCHAIN_HAS_THREADS
  193. select BR2_TOOLCHAIN_HAS_THREADS
  194. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  195. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  196. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  197. help
  198. Bootlin toolchain for the aarch64be architecture, using the
  199. glibc C library. This is a bleeding-edge version, which
  200. means it is using the latest versions of gcc, gdb and
  201. binutils.
  202. https://toolchains.bootlin.com/
  203. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_GLIBC_STABLE
  204. bool "aarch64be glibc stable 2020.08-1"
  205. depends on BR2_aarch64_be
  206. depends on BR2_USE_MMU
  207. depends on !BR2_STATIC_LIBS
  208. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  209. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  210. select BR2_INSTALL_LIBSTDCPP
  211. select BR2_TOOLCHAIN_HAS_FORTRAN
  212. select BR2_TOOLCHAIN_HAS_SSP
  213. select BR2_TOOLCHAIN_HAS_THREADS
  214. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  215. select BR2_TOOLCHAIN_HAS_THREADS
  216. select BR2_TOOLCHAIN_HAS_THREADS
  217. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  218. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  219. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  220. help
  221. Bootlin toolchain for the aarch64be architecture, using the
  222. glibc C library. This is a stable version, which means it
  223. is using stable and proven versions of gcc, gdb and
  224. binutils.
  225. https://toolchains.bootlin.com/
  226. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_UCLIBC_BLEEDING_EDGE
  227. bool "aarch64be uclibc bleeding-edge 2020.08-1"
  228. depends on BR2_aarch64_be
  229. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  230. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  231. select BR2_USE_WCHAR
  232. select BR2_ENABLE_LOCALE
  233. select BR2_INSTALL_LIBSTDCPP
  234. select BR2_TOOLCHAIN_HAS_FORTRAN
  235. select BR2_TOOLCHAIN_HAS_THREADS
  236. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  237. select BR2_TOOLCHAIN_HAS_THREADS
  238. select BR2_TOOLCHAIN_HAS_THREADS
  239. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  240. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  241. help
  242. Bootlin toolchain for the aarch64be architecture, using the
  243. uclibc C library. This is a bleeding-edge version, which
  244. means it is using the latest versions of gcc, gdb and
  245. binutils.
  246. https://toolchains.bootlin.com/
  247. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_AARCH64BE_UCLIBC_STABLE
  248. bool "aarch64be uclibc stable 2020.08-1"
  249. depends on BR2_aarch64_be
  250. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  251. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  252. select BR2_USE_WCHAR
  253. select BR2_ENABLE_LOCALE
  254. select BR2_INSTALL_LIBSTDCPP
  255. select BR2_TOOLCHAIN_HAS_FORTRAN
  256. select BR2_TOOLCHAIN_HAS_THREADS
  257. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  258. select BR2_TOOLCHAIN_HAS_THREADS
  259. select BR2_TOOLCHAIN_HAS_THREADS
  260. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  261. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  262. help
  263. Bootlin toolchain for the aarch64be architecture, using the
  264. uclibc C library. This is a stable version, which means it
  265. is using stable and proven versions of gcc, gdb and
  266. binutils.
  267. https://toolchains.bootlin.com/
  268. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_750D_UCLIBC_BLEEDING_EDGE
  269. bool "arcle-750d uclibc bleeding-edge 2020.08-1"
  270. depends on BR2_arcle
  271. depends on BR2_arc750d
  272. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  273. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  274. select BR2_USE_WCHAR
  275. select BR2_ENABLE_LOCALE
  276. select BR2_INSTALL_LIBSTDCPP
  277. select BR2_TOOLCHAIN_HAS_FORTRAN
  278. select BR2_TOOLCHAIN_HAS_THREADS
  279. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  280. select BR2_TOOLCHAIN_HAS_THREADS
  281. select BR2_TOOLCHAIN_HAS_THREADS
  282. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  283. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  284. help
  285. Bootlin toolchain for the arcle-750d architecture, using
  286. the uclibc C library. This is a bleeding-edge version,
  287. which means it is using the latest versions of gcc, gdb and
  288. binutils.
  289. https://toolchains.bootlin.com/
  290. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_750D_UCLIBC_STABLE
  291. bool "arcle-750d uclibc stable 2020.08-1"
  292. depends on BR2_arcle
  293. depends on BR2_arc750d
  294. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  295. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  296. select BR2_USE_WCHAR
  297. select BR2_ENABLE_LOCALE
  298. select BR2_INSTALL_LIBSTDCPP
  299. select BR2_TOOLCHAIN_HAS_FORTRAN
  300. select BR2_TOOLCHAIN_HAS_THREADS
  301. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  302. select BR2_TOOLCHAIN_HAS_THREADS
  303. select BR2_TOOLCHAIN_HAS_THREADS
  304. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  305. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  306. help
  307. Bootlin toolchain for the arcle-750d architecture, using
  308. the uclibc C library. This is a stable version, which means
  309. it is using stable and proven versions of gcc, gdb and
  310. binutils.
  311. https://toolchains.bootlin.com/
  312. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_GLIBC_BLEEDING_EDGE
  313. bool "arcle-hs38 glibc bleeding-edge 2020.08-1"
  314. depends on BR2_arcle
  315. depends on BR2_archs38
  316. depends on BR2_USE_MMU
  317. depends on !BR2_STATIC_LIBS
  318. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  319. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  320. select BR2_INSTALL_LIBSTDCPP
  321. select BR2_TOOLCHAIN_HAS_FORTRAN
  322. select BR2_TOOLCHAIN_HAS_SSP
  323. select BR2_TOOLCHAIN_HAS_THREADS
  324. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  325. select BR2_TOOLCHAIN_HAS_THREADS
  326. select BR2_TOOLCHAIN_HAS_THREADS
  327. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  328. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  329. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  330. help
  331. Bootlin toolchain for the arcle-hs38 architecture, using
  332. the glibc C library. This is a bleeding-edge version, which
  333. means it is using the latest versions of gcc, gdb and
  334. binutils.
  335. https://toolchains.bootlin.com/
  336. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_GLIBC_STABLE
  337. bool "arcle-hs38 glibc stable 2020.08-1"
  338. depends on BR2_arcle
  339. depends on BR2_archs38
  340. depends on BR2_USE_MMU
  341. depends on !BR2_STATIC_LIBS
  342. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  343. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  344. select BR2_INSTALL_LIBSTDCPP
  345. select BR2_TOOLCHAIN_HAS_FORTRAN
  346. select BR2_TOOLCHAIN_HAS_SSP
  347. select BR2_TOOLCHAIN_HAS_THREADS
  348. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  349. select BR2_TOOLCHAIN_HAS_THREADS
  350. select BR2_TOOLCHAIN_HAS_THREADS
  351. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  352. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  353. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  354. help
  355. Bootlin toolchain for the arcle-hs38 architecture, using
  356. the glibc C library. This is a stable version, which means
  357. it is using stable and proven versions of gcc, gdb and
  358. binutils.
  359. https://toolchains.bootlin.com/
  360. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_UCLIBC_BLEEDING_EDGE
  361. bool "arcle-hs38 uclibc bleeding-edge 2020.08-1"
  362. depends on BR2_arcle
  363. depends on BR2_archs38
  364. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  365. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  366. select BR2_USE_WCHAR
  367. select BR2_ENABLE_LOCALE
  368. select BR2_INSTALL_LIBSTDCPP
  369. select BR2_TOOLCHAIN_HAS_FORTRAN
  370. select BR2_TOOLCHAIN_HAS_THREADS
  371. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  372. select BR2_TOOLCHAIN_HAS_THREADS
  373. select BR2_TOOLCHAIN_HAS_THREADS
  374. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  375. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  376. help
  377. Bootlin toolchain for the arcle-hs38 architecture, using
  378. the uclibc C library. This is a bleeding-edge version,
  379. which means it is using the latest versions of gcc, gdb and
  380. binutils.
  381. https://toolchains.bootlin.com/
  382. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARCLE_HS38_UCLIBC_STABLE
  383. bool "arcle-hs38 uclibc stable 2020.08-1"
  384. depends on BR2_arcle
  385. depends on BR2_archs38
  386. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  387. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  388. select BR2_USE_WCHAR
  389. select BR2_ENABLE_LOCALE
  390. select BR2_INSTALL_LIBSTDCPP
  391. select BR2_TOOLCHAIN_HAS_FORTRAN
  392. select BR2_TOOLCHAIN_HAS_THREADS
  393. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  394. select BR2_TOOLCHAIN_HAS_THREADS
  395. select BR2_TOOLCHAIN_HAS_THREADS
  396. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  397. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  398. help
  399. Bootlin toolchain for the arcle-hs38 architecture, using
  400. the uclibc C library. This is a stable version, which means
  401. it is using stable and proven versions of gcc, gdb and
  402. binutils.
  403. https://toolchains.bootlin.com/
  404. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_GLIBC_BLEEDING_EDGE
  405. bool "armv5-eabi glibc bleeding-edge 2020.08-1"
  406. depends on BR2_ARM_CPU_ARMV5
  407. depends on BR2_ARM_EABI
  408. depends on BR2_USE_MMU
  409. depends on !BR2_STATIC_LIBS
  410. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  411. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  412. select BR2_INSTALL_LIBSTDCPP
  413. select BR2_TOOLCHAIN_HAS_FORTRAN
  414. select BR2_TOOLCHAIN_HAS_SSP
  415. select BR2_TOOLCHAIN_HAS_THREADS
  416. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  417. select BR2_TOOLCHAIN_HAS_THREADS
  418. select BR2_TOOLCHAIN_HAS_THREADS
  419. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  420. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  421. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  422. help
  423. Bootlin toolchain for the armv5-eabi architecture, using
  424. the glibc C library. This is a bleeding-edge version, which
  425. means it is using the latest versions of gcc, gdb and
  426. binutils.
  427. https://toolchains.bootlin.com/
  428. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_GLIBC_STABLE
  429. bool "armv5-eabi glibc stable 2020.08-1"
  430. depends on BR2_ARM_CPU_ARMV5
  431. depends on BR2_ARM_EABI
  432. depends on BR2_USE_MMU
  433. depends on !BR2_STATIC_LIBS
  434. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  435. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  436. select BR2_INSTALL_LIBSTDCPP
  437. select BR2_TOOLCHAIN_HAS_FORTRAN
  438. select BR2_TOOLCHAIN_HAS_SSP
  439. select BR2_TOOLCHAIN_HAS_THREADS
  440. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  441. select BR2_TOOLCHAIN_HAS_THREADS
  442. select BR2_TOOLCHAIN_HAS_THREADS
  443. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  444. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  445. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  446. help
  447. Bootlin toolchain for the armv5-eabi architecture, using
  448. the glibc C library. This is a stable version, which means
  449. it is using stable and proven versions of gcc, gdb and
  450. binutils.
  451. https://toolchains.bootlin.com/
  452. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_MUSL_BLEEDING_EDGE
  453. bool "armv5-eabi musl bleeding-edge 2020.08-1"
  454. depends on BR2_ARM_CPU_ARMV5
  455. depends on BR2_ARM_EABI
  456. depends on BR2_USE_MMU
  457. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  458. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  459. select BR2_INSTALL_LIBSTDCPP
  460. select BR2_TOOLCHAIN_HAS_FORTRAN
  461. select BR2_TOOLCHAIN_HAS_SSP
  462. select BR2_TOOLCHAIN_HAS_THREADS
  463. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  464. select BR2_TOOLCHAIN_HAS_THREADS
  465. select BR2_TOOLCHAIN_HAS_THREADS
  466. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  467. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  468. help
  469. Bootlin toolchain for the armv5-eabi architecture, using
  470. the musl C library. This is a bleeding-edge version, which
  471. means it is using the latest versions of gcc, gdb and
  472. binutils.
  473. https://toolchains.bootlin.com/
  474. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_MUSL_STABLE
  475. bool "armv5-eabi musl stable 2020.08-1"
  476. depends on BR2_ARM_CPU_ARMV5
  477. depends on BR2_ARM_EABI
  478. depends on BR2_USE_MMU
  479. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  480. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  481. select BR2_INSTALL_LIBSTDCPP
  482. select BR2_TOOLCHAIN_HAS_FORTRAN
  483. select BR2_TOOLCHAIN_HAS_SSP
  484. select BR2_TOOLCHAIN_HAS_THREADS
  485. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  486. select BR2_TOOLCHAIN_HAS_THREADS
  487. select BR2_TOOLCHAIN_HAS_THREADS
  488. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  489. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  490. help
  491. Bootlin toolchain for the armv5-eabi architecture, using
  492. the musl C library. This is a stable version, which means
  493. it is using stable and proven versions of gcc, gdb and
  494. binutils.
  495. https://toolchains.bootlin.com/
  496. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_UCLIBC_BLEEDING_EDGE
  497. bool "armv5-eabi uclibc bleeding-edge 2020.08-1"
  498. depends on BR2_ARM_CPU_ARMV5
  499. depends on BR2_ARM_EABI
  500. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  501. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  502. select BR2_USE_WCHAR
  503. select BR2_ENABLE_LOCALE
  504. select BR2_INSTALL_LIBSTDCPP
  505. select BR2_TOOLCHAIN_HAS_FORTRAN
  506. select BR2_TOOLCHAIN_HAS_THREADS
  507. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  508. select BR2_TOOLCHAIN_HAS_THREADS
  509. select BR2_TOOLCHAIN_HAS_THREADS
  510. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  511. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  512. help
  513. Bootlin toolchain for the armv5-eabi architecture, using
  514. the uclibc C library. This is a bleeding-edge version,
  515. which means it is using the latest versions of gcc, gdb and
  516. binutils.
  517. https://toolchains.bootlin.com/
  518. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV5_EABI_UCLIBC_STABLE
  519. bool "armv5-eabi uclibc stable 2020.08-1"
  520. depends on BR2_ARM_CPU_ARMV5
  521. depends on BR2_ARM_EABI
  522. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  523. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  524. select BR2_USE_WCHAR
  525. select BR2_ENABLE_LOCALE
  526. select BR2_INSTALL_LIBSTDCPP
  527. select BR2_TOOLCHAIN_HAS_FORTRAN
  528. select BR2_TOOLCHAIN_HAS_THREADS
  529. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  530. select BR2_TOOLCHAIN_HAS_THREADS
  531. select BR2_TOOLCHAIN_HAS_THREADS
  532. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  533. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  534. help
  535. Bootlin toolchain for the armv5-eabi architecture, using
  536. the uclibc C library. This is a stable version, which means
  537. it is using stable and proven versions of gcc, gdb and
  538. binutils.
  539. https://toolchains.bootlin.com/
  540. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_GLIBC_BLEEDING_EDGE
  541. bool "armv6-eabihf glibc bleeding-edge 2020.08-1"
  542. depends on BR2_ARM_CPU_ARMV6
  543. depends on BR2_ARM_EABIHF
  544. depends on BR2_USE_MMU
  545. depends on !BR2_STATIC_LIBS
  546. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  547. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  548. select BR2_INSTALL_LIBSTDCPP
  549. select BR2_TOOLCHAIN_HAS_FORTRAN
  550. select BR2_TOOLCHAIN_HAS_SSP
  551. select BR2_TOOLCHAIN_HAS_THREADS
  552. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  553. select BR2_TOOLCHAIN_HAS_THREADS
  554. select BR2_TOOLCHAIN_HAS_THREADS
  555. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  556. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  557. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  558. help
  559. Bootlin toolchain for the armv6-eabihf architecture, using
  560. the glibc C library. This is a bleeding-edge version, which
  561. means it is using the latest versions of gcc, gdb and
  562. binutils.
  563. https://toolchains.bootlin.com/
  564. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_GLIBC_STABLE
  565. bool "armv6-eabihf glibc stable 2020.08-1"
  566. depends on BR2_ARM_CPU_ARMV6
  567. depends on BR2_ARM_EABIHF
  568. depends on BR2_USE_MMU
  569. depends on !BR2_STATIC_LIBS
  570. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  571. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  572. select BR2_INSTALL_LIBSTDCPP
  573. select BR2_TOOLCHAIN_HAS_FORTRAN
  574. select BR2_TOOLCHAIN_HAS_SSP
  575. select BR2_TOOLCHAIN_HAS_THREADS
  576. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  577. select BR2_TOOLCHAIN_HAS_THREADS
  578. select BR2_TOOLCHAIN_HAS_THREADS
  579. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  580. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  581. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  582. help
  583. Bootlin toolchain for the armv6-eabihf architecture, using
  584. the glibc C library. This is a stable version, which means
  585. it is using stable and proven versions of gcc, gdb and
  586. binutils.
  587. https://toolchains.bootlin.com/
  588. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_MUSL_BLEEDING_EDGE
  589. bool "armv6-eabihf musl bleeding-edge 2020.08-1"
  590. depends on BR2_ARM_CPU_ARMV6
  591. depends on BR2_ARM_EABIHF
  592. depends on BR2_USE_MMU
  593. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  594. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  595. select BR2_INSTALL_LIBSTDCPP
  596. select BR2_TOOLCHAIN_HAS_FORTRAN
  597. select BR2_TOOLCHAIN_HAS_SSP
  598. select BR2_TOOLCHAIN_HAS_THREADS
  599. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  600. select BR2_TOOLCHAIN_HAS_THREADS
  601. select BR2_TOOLCHAIN_HAS_THREADS
  602. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  603. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  604. help
  605. Bootlin toolchain for the armv6-eabihf architecture, using
  606. the musl C library. This is a bleeding-edge version, which
  607. means it is using the latest versions of gcc, gdb and
  608. binutils.
  609. https://toolchains.bootlin.com/
  610. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_MUSL_STABLE
  611. bool "armv6-eabihf musl stable 2020.08-1"
  612. depends on BR2_ARM_CPU_ARMV6
  613. depends on BR2_ARM_EABIHF
  614. depends on BR2_USE_MMU
  615. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  616. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  617. select BR2_INSTALL_LIBSTDCPP
  618. select BR2_TOOLCHAIN_HAS_FORTRAN
  619. select BR2_TOOLCHAIN_HAS_SSP
  620. select BR2_TOOLCHAIN_HAS_THREADS
  621. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  622. select BR2_TOOLCHAIN_HAS_THREADS
  623. select BR2_TOOLCHAIN_HAS_THREADS
  624. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  625. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  626. help
  627. Bootlin toolchain for the armv6-eabihf architecture, using
  628. the musl C library. This is a stable version, which means
  629. it is using stable and proven versions of gcc, gdb and
  630. binutils.
  631. https://toolchains.bootlin.com/
  632. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_UCLIBC_BLEEDING_EDGE
  633. bool "armv6-eabihf uclibc bleeding-edge 2020.08-1"
  634. depends on BR2_ARM_CPU_ARMV6
  635. depends on BR2_ARM_EABIHF
  636. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  637. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  638. select BR2_USE_WCHAR
  639. select BR2_ENABLE_LOCALE
  640. select BR2_INSTALL_LIBSTDCPP
  641. select BR2_TOOLCHAIN_HAS_FORTRAN
  642. select BR2_TOOLCHAIN_HAS_THREADS
  643. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  644. select BR2_TOOLCHAIN_HAS_THREADS
  645. select BR2_TOOLCHAIN_HAS_THREADS
  646. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  647. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  648. help
  649. Bootlin toolchain for the armv6-eabihf architecture, using
  650. the uclibc C library. This is a bleeding-edge version,
  651. which means it is using the latest versions of gcc, gdb and
  652. binutils.
  653. https://toolchains.bootlin.com/
  654. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV6_EABIHF_UCLIBC_STABLE
  655. bool "armv6-eabihf uclibc stable 2020.08-1"
  656. depends on BR2_ARM_CPU_ARMV6
  657. depends on BR2_ARM_EABIHF
  658. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  659. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  660. select BR2_USE_WCHAR
  661. select BR2_ENABLE_LOCALE
  662. select BR2_INSTALL_LIBSTDCPP
  663. select BR2_TOOLCHAIN_HAS_FORTRAN
  664. select BR2_TOOLCHAIN_HAS_THREADS
  665. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  666. select BR2_TOOLCHAIN_HAS_THREADS
  667. select BR2_TOOLCHAIN_HAS_THREADS
  668. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  669. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  670. help
  671. Bootlin toolchain for the armv6-eabihf architecture, using
  672. the uclibc C library. This is a stable version, which means
  673. it is using stable and proven versions of gcc, gdb and
  674. binutils.
  675. https://toolchains.bootlin.com/
  676. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_GLIBC_BLEEDING_EDGE
  677. bool "armv7-eabihf glibc bleeding-edge 2020.08-1"
  678. depends on BR2_ARM_CPU_ARMV7A
  679. depends on BR2_ARM_EABIHF
  680. depends on BR2_USE_MMU
  681. depends on !BR2_STATIC_LIBS
  682. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  683. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  684. select BR2_INSTALL_LIBSTDCPP
  685. select BR2_TOOLCHAIN_HAS_FORTRAN
  686. select BR2_TOOLCHAIN_HAS_SSP
  687. select BR2_TOOLCHAIN_HAS_THREADS
  688. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  689. select BR2_TOOLCHAIN_HAS_THREADS
  690. select BR2_TOOLCHAIN_HAS_THREADS
  691. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  692. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  693. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  694. help
  695. Bootlin toolchain for the armv7-eabihf architecture, using
  696. the glibc C library. This is a bleeding-edge version, which
  697. means it is using the latest versions of gcc, gdb and
  698. binutils.
  699. https://toolchains.bootlin.com/
  700. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_GLIBC_STABLE
  701. bool "armv7-eabihf glibc stable 2020.08-1"
  702. depends on BR2_ARM_CPU_ARMV7A
  703. depends on BR2_ARM_EABIHF
  704. depends on BR2_USE_MMU
  705. depends on !BR2_STATIC_LIBS
  706. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  707. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  708. select BR2_INSTALL_LIBSTDCPP
  709. select BR2_TOOLCHAIN_HAS_FORTRAN
  710. select BR2_TOOLCHAIN_HAS_SSP
  711. select BR2_TOOLCHAIN_HAS_THREADS
  712. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  713. select BR2_TOOLCHAIN_HAS_THREADS
  714. select BR2_TOOLCHAIN_HAS_THREADS
  715. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  716. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  717. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  718. help
  719. Bootlin toolchain for the armv7-eabihf architecture, using
  720. the glibc C library. This is a stable version, which means
  721. it is using stable and proven versions of gcc, gdb and
  722. binutils.
  723. https://toolchains.bootlin.com/
  724. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_MUSL_BLEEDING_EDGE
  725. bool "armv7-eabihf musl bleeding-edge 2020.08-1"
  726. depends on BR2_ARM_CPU_ARMV7A
  727. depends on BR2_ARM_EABIHF
  728. depends on BR2_USE_MMU
  729. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  730. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  731. select BR2_INSTALL_LIBSTDCPP
  732. select BR2_TOOLCHAIN_HAS_FORTRAN
  733. select BR2_TOOLCHAIN_HAS_SSP
  734. select BR2_TOOLCHAIN_HAS_THREADS
  735. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  736. select BR2_TOOLCHAIN_HAS_THREADS
  737. select BR2_TOOLCHAIN_HAS_THREADS
  738. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  739. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  740. help
  741. Bootlin toolchain for the armv7-eabihf architecture, using
  742. the musl C library. This is a bleeding-edge version, which
  743. means it is using the latest versions of gcc, gdb and
  744. binutils.
  745. https://toolchains.bootlin.com/
  746. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_MUSL_STABLE
  747. bool "armv7-eabihf musl stable 2020.08-1"
  748. depends on BR2_ARM_CPU_ARMV7A
  749. depends on BR2_ARM_EABIHF
  750. depends on BR2_USE_MMU
  751. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  752. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  753. select BR2_INSTALL_LIBSTDCPP
  754. select BR2_TOOLCHAIN_HAS_FORTRAN
  755. select BR2_TOOLCHAIN_HAS_SSP
  756. select BR2_TOOLCHAIN_HAS_THREADS
  757. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  758. select BR2_TOOLCHAIN_HAS_THREADS
  759. select BR2_TOOLCHAIN_HAS_THREADS
  760. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  761. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  762. help
  763. Bootlin toolchain for the armv7-eabihf architecture, using
  764. the musl C library. This is a stable version, which means
  765. it is using stable and proven versions of gcc, gdb and
  766. binutils.
  767. https://toolchains.bootlin.com/
  768. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_UCLIBC_BLEEDING_EDGE
  769. bool "armv7-eabihf uclibc bleeding-edge 2020.08-1"
  770. depends on BR2_ARM_CPU_ARMV7A
  771. depends on BR2_ARM_EABIHF
  772. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  773. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  774. select BR2_USE_WCHAR
  775. select BR2_ENABLE_LOCALE
  776. select BR2_INSTALL_LIBSTDCPP
  777. select BR2_TOOLCHAIN_HAS_FORTRAN
  778. select BR2_TOOLCHAIN_HAS_THREADS
  779. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  780. select BR2_TOOLCHAIN_HAS_THREADS
  781. select BR2_TOOLCHAIN_HAS_THREADS
  782. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  783. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  784. help
  785. Bootlin toolchain for the armv7-eabihf architecture, using
  786. the uclibc C library. This is a bleeding-edge version,
  787. which means it is using the latest versions of gcc, gdb and
  788. binutils.
  789. https://toolchains.bootlin.com/
  790. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7_EABIHF_UCLIBC_STABLE
  791. bool "armv7-eabihf uclibc stable 2020.08-1"
  792. depends on BR2_ARM_CPU_ARMV7A
  793. depends on BR2_ARM_EABIHF
  794. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  795. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  796. select BR2_USE_WCHAR
  797. select BR2_ENABLE_LOCALE
  798. select BR2_INSTALL_LIBSTDCPP
  799. select BR2_TOOLCHAIN_HAS_FORTRAN
  800. select BR2_TOOLCHAIN_HAS_THREADS
  801. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  802. select BR2_TOOLCHAIN_HAS_THREADS
  803. select BR2_TOOLCHAIN_HAS_THREADS
  804. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  805. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  806. help
  807. Bootlin toolchain for the armv7-eabihf architecture, using
  808. the uclibc C library. This is a stable version, which means
  809. it is using stable and proven versions of gcc, gdb and
  810. binutils.
  811. https://toolchains.bootlin.com/
  812. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7M_UCLIBC_BLEEDING_EDGE
  813. bool "armv7m uclibc bleeding-edge 2020.08-1"
  814. depends on BR2_ARM_CPU_ARMV7M
  815. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  816. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  817. select BR2_USE_WCHAR
  818. select BR2_ENABLE_LOCALE
  819. select BR2_INSTALL_LIBSTDCPP
  820. select BR2_TOOLCHAIN_HAS_FORTRAN
  821. select BR2_TOOLCHAIN_HAS_THREADS
  822. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  823. select BR2_TOOLCHAIN_HAS_THREADS
  824. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  825. help
  826. Bootlin toolchain for the armv7m architecture, using the
  827. uclibc C library. This is a bleeding-edge version, which
  828. means it is using the latest versions of gcc, gdb and
  829. binutils.
  830. https://toolchains.bootlin.com/
  831. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_ARMV7M_UCLIBC_STABLE
  832. bool "armv7m uclibc stable 2020.08-1"
  833. depends on BR2_ARM_CPU_ARMV7M
  834. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  835. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  836. select BR2_USE_WCHAR
  837. select BR2_ENABLE_LOCALE
  838. select BR2_INSTALL_LIBSTDCPP
  839. select BR2_TOOLCHAIN_HAS_FORTRAN
  840. select BR2_TOOLCHAIN_HAS_THREADS
  841. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  842. select BR2_TOOLCHAIN_HAS_THREADS
  843. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  844. help
  845. Bootlin toolchain for the armv7m architecture, using the
  846. uclibc C library. This is a stable version, which means it
  847. is using stable and proven versions of gcc, gdb and
  848. binutils.
  849. https://toolchains.bootlin.com/
  850. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_68XXX_UCLIBC_BLEEDING_EDGE
  851. bool "m68k-68xxx uclibc bleeding-edge 2020.08-1"
  852. depends on BR2_m68k_m68k
  853. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  854. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  855. select BR2_USE_WCHAR
  856. select BR2_ENABLE_LOCALE
  857. select BR2_INSTALL_LIBSTDCPP
  858. select BR2_TOOLCHAIN_HAS_FORTRAN
  859. select BR2_TOOLCHAIN_HAS_THREADS
  860. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  861. select BR2_TOOLCHAIN_HAS_THREADS
  862. select BR2_TOOLCHAIN_HAS_THREADS
  863. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  864. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  865. help
  866. Bootlin toolchain for the m68k-68xxx architecture, using
  867. the uclibc C library. This is a bleeding-edge version,
  868. which means it is using the latest versions of gcc, gdb and
  869. binutils.
  870. https://toolchains.bootlin.com/
  871. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_68XXX_UCLIBC_STABLE
  872. bool "m68k-68xxx uclibc stable 2020.08-1"
  873. depends on BR2_m68k_m68k
  874. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  875. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  876. select BR2_USE_WCHAR
  877. select BR2_ENABLE_LOCALE
  878. select BR2_INSTALL_LIBSTDCPP
  879. select BR2_TOOLCHAIN_HAS_FORTRAN
  880. select BR2_TOOLCHAIN_HAS_THREADS
  881. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  882. select BR2_TOOLCHAIN_HAS_THREADS
  883. select BR2_TOOLCHAIN_HAS_THREADS
  884. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  885. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  886. help
  887. Bootlin toolchain for the m68k-68xxx architecture, using
  888. the uclibc C library. This is a stable version, which means
  889. it is using stable and proven versions of gcc, gdb and
  890. binutils.
  891. https://toolchains.bootlin.com/
  892. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_COLDFIRE_UCLIBC_BLEEDING_EDGE
  893. bool "m68k-coldfire uclibc bleeding-edge 2020.08-1"
  894. depends on BR2_m68k_cf
  895. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  896. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  897. select BR2_USE_WCHAR
  898. select BR2_ENABLE_LOCALE
  899. select BR2_INSTALL_LIBSTDCPP
  900. select BR2_TOOLCHAIN_HAS_FORTRAN
  901. select BR2_TOOLCHAIN_HAS_THREADS
  902. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  903. select BR2_TOOLCHAIN_HAS_THREADS
  904. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  905. help
  906. Bootlin toolchain for the m68k-coldfire architecture, using
  907. the uclibc C library. This is a bleeding-edge version,
  908. which means it is using the latest versions of gcc, gdb and
  909. binutils.
  910. https://toolchains.bootlin.com/
  911. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_M68K_COLDFIRE_UCLIBC_STABLE
  912. bool "m68k-coldfire uclibc stable 2020.08-1"
  913. depends on BR2_m68k_cf
  914. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  915. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  916. select BR2_USE_WCHAR
  917. select BR2_ENABLE_LOCALE
  918. select BR2_INSTALL_LIBSTDCPP
  919. select BR2_TOOLCHAIN_HAS_FORTRAN
  920. select BR2_TOOLCHAIN_HAS_THREADS
  921. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  922. select BR2_TOOLCHAIN_HAS_THREADS
  923. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  924. help
  925. Bootlin toolchain for the m68k-coldfire architecture, using
  926. the uclibc C library. This is a stable version, which means
  927. it is using stable and proven versions of gcc, gdb and
  928. binutils.
  929. https://toolchains.bootlin.com/
  930. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_GLIBC_BLEEDING_EDGE
  931. bool "microblazebe glibc bleeding-edge 2020.08-1"
  932. depends on BR2_microblazebe
  933. depends on BR2_USE_MMU
  934. depends on !BR2_STATIC_LIBS
  935. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  936. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  937. select BR2_INSTALL_LIBSTDCPP
  938. select BR2_TOOLCHAIN_HAS_FORTRAN
  939. select BR2_TOOLCHAIN_HAS_THREADS
  940. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  941. select BR2_TOOLCHAIN_HAS_THREADS
  942. select BR2_TOOLCHAIN_HAS_THREADS
  943. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  944. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  945. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  946. help
  947. Bootlin toolchain for the microblazebe architecture, using
  948. the glibc C library. This is a bleeding-edge version, which
  949. means it is using the latest versions of gcc, gdb and
  950. binutils.
  951. https://toolchains.bootlin.com/
  952. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_GLIBC_STABLE
  953. bool "microblazebe glibc stable 2020.08-1"
  954. depends on BR2_microblazebe
  955. depends on BR2_USE_MMU
  956. depends on !BR2_STATIC_LIBS
  957. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  958. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  959. select BR2_INSTALL_LIBSTDCPP
  960. select BR2_TOOLCHAIN_HAS_FORTRAN
  961. select BR2_TOOLCHAIN_HAS_THREADS
  962. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  963. select BR2_TOOLCHAIN_HAS_THREADS
  964. select BR2_TOOLCHAIN_HAS_THREADS
  965. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  966. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  967. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  968. help
  969. Bootlin toolchain for the microblazebe architecture, using
  970. the glibc C library. This is a stable version, which means
  971. it is using stable and proven versions of gcc, gdb and
  972. binutils.
  973. https://toolchains.bootlin.com/
  974. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_MUSL_BLEEDING_EDGE
  975. bool "microblazebe musl bleeding-edge 2020.08-1"
  976. depends on BR2_microblazebe
  977. depends on BR2_USE_MMU
  978. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  979. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  980. select BR2_INSTALL_LIBSTDCPP
  981. select BR2_TOOLCHAIN_HAS_FORTRAN
  982. select BR2_TOOLCHAIN_HAS_THREADS
  983. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  984. select BR2_TOOLCHAIN_HAS_THREADS
  985. select BR2_TOOLCHAIN_HAS_THREADS
  986. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  987. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  988. help
  989. Bootlin toolchain for the microblazebe architecture, using
  990. the musl C library. This is a bleeding-edge version, which
  991. means it is using the latest versions of gcc, gdb and
  992. binutils.
  993. https://toolchains.bootlin.com/
  994. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_MUSL_STABLE
  995. bool "microblazebe musl stable 2020.08-1"
  996. depends on BR2_microblazebe
  997. depends on BR2_USE_MMU
  998. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  999. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1000. select BR2_INSTALL_LIBSTDCPP
  1001. select BR2_TOOLCHAIN_HAS_FORTRAN
  1002. select BR2_TOOLCHAIN_HAS_THREADS
  1003. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1004. select BR2_TOOLCHAIN_HAS_THREADS
  1005. select BR2_TOOLCHAIN_HAS_THREADS
  1006. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1007. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1008. help
  1009. Bootlin toolchain for the microblazebe architecture, using
  1010. the musl C library. This is a stable version, which means
  1011. it is using stable and proven versions of gcc, gdb and
  1012. binutils.
  1013. https://toolchains.bootlin.com/
  1014. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_UCLIBC_BLEEDING_EDGE
  1015. bool "microblazebe uclibc bleeding-edge 2020.08-1"
  1016. depends on BR2_microblazebe
  1017. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1018. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1019. select BR2_USE_WCHAR
  1020. select BR2_ENABLE_LOCALE
  1021. select BR2_INSTALL_LIBSTDCPP
  1022. select BR2_TOOLCHAIN_HAS_FORTRAN
  1023. select BR2_TOOLCHAIN_HAS_THREADS
  1024. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1025. select BR2_TOOLCHAIN_HAS_THREADS
  1026. select BR2_TOOLCHAIN_HAS_THREADS
  1027. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1028. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1029. help
  1030. Bootlin toolchain for the microblazebe architecture, using
  1031. the uclibc C library. This is a bleeding-edge version,
  1032. which means it is using the latest versions of gcc, gdb and
  1033. binutils.
  1034. https://toolchains.bootlin.com/
  1035. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEBE_UCLIBC_STABLE
  1036. bool "microblazebe uclibc stable 2020.08-1"
  1037. depends on BR2_microblazebe
  1038. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1039. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1040. select BR2_USE_WCHAR
  1041. select BR2_ENABLE_LOCALE
  1042. select BR2_INSTALL_LIBSTDCPP
  1043. select BR2_TOOLCHAIN_HAS_FORTRAN
  1044. select BR2_TOOLCHAIN_HAS_THREADS
  1045. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1046. select BR2_TOOLCHAIN_HAS_THREADS
  1047. select BR2_TOOLCHAIN_HAS_THREADS
  1048. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1049. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1050. help
  1051. Bootlin toolchain for the microblazebe architecture, using
  1052. the uclibc C library. This is a stable version, which means
  1053. it is using stable and proven versions of gcc, gdb and
  1054. binutils.
  1055. https://toolchains.bootlin.com/
  1056. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_GLIBC_BLEEDING_EDGE
  1057. bool "microblazeel glibc bleeding-edge 2020.08-1"
  1058. depends on BR2_microblazeel
  1059. depends on BR2_USE_MMU
  1060. depends on !BR2_STATIC_LIBS
  1061. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1062. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1063. select BR2_INSTALL_LIBSTDCPP
  1064. select BR2_TOOLCHAIN_HAS_FORTRAN
  1065. select BR2_TOOLCHAIN_HAS_THREADS
  1066. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1067. select BR2_TOOLCHAIN_HAS_THREADS
  1068. select BR2_TOOLCHAIN_HAS_THREADS
  1069. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1070. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1071. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1072. help
  1073. Bootlin toolchain for the microblazeel architecture, using
  1074. the glibc C library. This is a bleeding-edge version, which
  1075. means it is using the latest versions of gcc, gdb and
  1076. binutils.
  1077. https://toolchains.bootlin.com/
  1078. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_GLIBC_STABLE
  1079. bool "microblazeel glibc stable 2020.08-1"
  1080. depends on BR2_microblazeel
  1081. depends on BR2_USE_MMU
  1082. depends on !BR2_STATIC_LIBS
  1083. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1084. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1085. select BR2_INSTALL_LIBSTDCPP
  1086. select BR2_TOOLCHAIN_HAS_FORTRAN
  1087. select BR2_TOOLCHAIN_HAS_THREADS
  1088. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1089. select BR2_TOOLCHAIN_HAS_THREADS
  1090. select BR2_TOOLCHAIN_HAS_THREADS
  1091. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1092. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1093. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1094. help
  1095. Bootlin toolchain for the microblazeel architecture, using
  1096. the glibc C library. This is a stable version, which means
  1097. it is using stable and proven versions of gcc, gdb and
  1098. binutils.
  1099. https://toolchains.bootlin.com/
  1100. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_MUSL_BLEEDING_EDGE
  1101. bool "microblazeel musl bleeding-edge 2020.08-1"
  1102. depends on BR2_microblazeel
  1103. depends on BR2_USE_MMU
  1104. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1105. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1106. select BR2_INSTALL_LIBSTDCPP
  1107. select BR2_TOOLCHAIN_HAS_FORTRAN
  1108. select BR2_TOOLCHAIN_HAS_THREADS
  1109. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1110. select BR2_TOOLCHAIN_HAS_THREADS
  1111. select BR2_TOOLCHAIN_HAS_THREADS
  1112. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1113. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1114. help
  1115. Bootlin toolchain for the microblazeel architecture, using
  1116. the musl C library. This is a bleeding-edge version, which
  1117. means it is using the latest versions of gcc, gdb and
  1118. binutils.
  1119. https://toolchains.bootlin.com/
  1120. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_MUSL_STABLE
  1121. bool "microblazeel musl stable 2020.08-1"
  1122. depends on BR2_microblazeel
  1123. depends on BR2_USE_MMU
  1124. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1125. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1126. select BR2_INSTALL_LIBSTDCPP
  1127. select BR2_TOOLCHAIN_HAS_FORTRAN
  1128. select BR2_TOOLCHAIN_HAS_THREADS
  1129. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1130. select BR2_TOOLCHAIN_HAS_THREADS
  1131. select BR2_TOOLCHAIN_HAS_THREADS
  1132. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1133. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1134. help
  1135. Bootlin toolchain for the microblazeel architecture, using
  1136. the musl C library. This is a stable version, which means
  1137. it is using stable and proven versions of gcc, gdb and
  1138. binutils.
  1139. https://toolchains.bootlin.com/
  1140. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_UCLIBC_BLEEDING_EDGE
  1141. bool "microblazeel uclibc bleeding-edge 2020.08-1"
  1142. depends on BR2_microblazeel
  1143. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1144. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1145. select BR2_USE_WCHAR
  1146. select BR2_ENABLE_LOCALE
  1147. select BR2_INSTALL_LIBSTDCPP
  1148. select BR2_TOOLCHAIN_HAS_FORTRAN
  1149. select BR2_TOOLCHAIN_HAS_THREADS
  1150. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1151. select BR2_TOOLCHAIN_HAS_THREADS
  1152. select BR2_TOOLCHAIN_HAS_THREADS
  1153. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1154. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1155. help
  1156. Bootlin toolchain for the microblazeel architecture, using
  1157. the uclibc C library. This is a bleeding-edge version,
  1158. which means it is using the latest versions of gcc, gdb and
  1159. binutils.
  1160. https://toolchains.bootlin.com/
  1161. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MICROBLAZEEL_UCLIBC_STABLE
  1162. bool "microblazeel uclibc stable 2020.08-1"
  1163. depends on BR2_microblazeel
  1164. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1165. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1166. select BR2_USE_WCHAR
  1167. select BR2_ENABLE_LOCALE
  1168. select BR2_INSTALL_LIBSTDCPP
  1169. select BR2_TOOLCHAIN_HAS_FORTRAN
  1170. select BR2_TOOLCHAIN_HAS_THREADS
  1171. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1172. select BR2_TOOLCHAIN_HAS_THREADS
  1173. select BR2_TOOLCHAIN_HAS_THREADS
  1174. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1175. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1176. help
  1177. Bootlin toolchain for the microblazeel architecture, using
  1178. the uclibc C library. This is a stable version, which means
  1179. it is using stable and proven versions of gcc, gdb and
  1180. binutils.
  1181. https://toolchains.bootlin.com/
  1182. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_GLIBC_BLEEDING_EDGE
  1183. bool "mips32 glibc bleeding-edge 2020.08-1"
  1184. depends on BR2_mips
  1185. depends on BR2_mips_32
  1186. depends on !BR2_MIPS_SOFT_FLOAT
  1187. depends on BR2_USE_MMU
  1188. depends on !BR2_STATIC_LIBS
  1189. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1190. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1191. select BR2_INSTALL_LIBSTDCPP
  1192. select BR2_TOOLCHAIN_HAS_FORTRAN
  1193. select BR2_TOOLCHAIN_HAS_SSP
  1194. select BR2_TOOLCHAIN_HAS_THREADS
  1195. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1196. select BR2_TOOLCHAIN_HAS_THREADS
  1197. select BR2_TOOLCHAIN_HAS_THREADS
  1198. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1199. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1200. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1201. help
  1202. Bootlin toolchain for the mips32 architecture, using the
  1203. glibc C library. This is a bleeding-edge version, which
  1204. means it is using the latest versions of gcc, gdb and
  1205. binutils.
  1206. https://toolchains.bootlin.com/
  1207. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_GLIBC_STABLE
  1208. bool "mips32 glibc stable 2020.08-1"
  1209. depends on BR2_mips
  1210. depends on BR2_mips_32
  1211. depends on !BR2_MIPS_SOFT_FLOAT
  1212. depends on BR2_USE_MMU
  1213. depends on !BR2_STATIC_LIBS
  1214. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1215. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1216. select BR2_INSTALL_LIBSTDCPP
  1217. select BR2_TOOLCHAIN_HAS_FORTRAN
  1218. select BR2_TOOLCHAIN_HAS_SSP
  1219. select BR2_TOOLCHAIN_HAS_THREADS
  1220. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1221. select BR2_TOOLCHAIN_HAS_THREADS
  1222. select BR2_TOOLCHAIN_HAS_THREADS
  1223. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1224. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1225. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1226. help
  1227. Bootlin toolchain for the mips32 architecture, using the
  1228. glibc C library. This is a stable version, which means it
  1229. is using stable and proven versions of gcc, gdb and
  1230. binutils.
  1231. https://toolchains.bootlin.com/
  1232. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_MUSL_BLEEDING_EDGE
  1233. bool "mips32 musl bleeding-edge 2020.08-1"
  1234. depends on BR2_mips
  1235. depends on BR2_mips_32
  1236. depends on !BR2_MIPS_SOFT_FLOAT
  1237. depends on BR2_USE_MMU
  1238. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1239. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1240. select BR2_INSTALL_LIBSTDCPP
  1241. select BR2_TOOLCHAIN_HAS_FORTRAN
  1242. select BR2_TOOLCHAIN_HAS_SSP
  1243. select BR2_TOOLCHAIN_HAS_THREADS
  1244. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1245. select BR2_TOOLCHAIN_HAS_THREADS
  1246. select BR2_TOOLCHAIN_HAS_THREADS
  1247. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1248. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1249. help
  1250. Bootlin toolchain for the mips32 architecture, using the
  1251. musl C library. This is a bleeding-edge version, which
  1252. means it is using the latest versions of gcc, gdb and
  1253. binutils.
  1254. https://toolchains.bootlin.com/
  1255. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_MUSL_STABLE
  1256. bool "mips32 musl stable 2020.08-1"
  1257. depends on BR2_mips
  1258. depends on BR2_mips_32
  1259. depends on !BR2_MIPS_SOFT_FLOAT
  1260. depends on BR2_USE_MMU
  1261. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1262. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1263. select BR2_INSTALL_LIBSTDCPP
  1264. select BR2_TOOLCHAIN_HAS_FORTRAN
  1265. select BR2_TOOLCHAIN_HAS_SSP
  1266. select BR2_TOOLCHAIN_HAS_THREADS
  1267. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1268. select BR2_TOOLCHAIN_HAS_THREADS
  1269. select BR2_TOOLCHAIN_HAS_THREADS
  1270. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1271. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1272. help
  1273. Bootlin toolchain for the mips32 architecture, using the
  1274. musl C library. This is a stable version, which means it is
  1275. using stable and proven versions of gcc, gdb and binutils.
  1276. https://toolchains.bootlin.com/
  1277. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_UCLIBC_BLEEDING_EDGE
  1278. bool "mips32 uclibc bleeding-edge 2020.08-1"
  1279. depends on BR2_mips
  1280. depends on BR2_mips_32
  1281. depends on !BR2_MIPS_SOFT_FLOAT
  1282. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1283. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1284. select BR2_USE_WCHAR
  1285. select BR2_ENABLE_LOCALE
  1286. select BR2_INSTALL_LIBSTDCPP
  1287. select BR2_TOOLCHAIN_HAS_FORTRAN
  1288. select BR2_TOOLCHAIN_HAS_THREADS
  1289. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1290. select BR2_TOOLCHAIN_HAS_THREADS
  1291. select BR2_TOOLCHAIN_HAS_THREADS
  1292. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1293. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1294. help
  1295. Bootlin toolchain for the mips32 architecture, using the
  1296. uclibc C library. This is a bleeding-edge version, which
  1297. means it is using the latest versions of gcc, gdb and
  1298. binutils.
  1299. https://toolchains.bootlin.com/
  1300. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32_UCLIBC_STABLE
  1301. bool "mips32 uclibc stable 2020.08-1"
  1302. depends on BR2_mips
  1303. depends on BR2_mips_32
  1304. depends on !BR2_MIPS_SOFT_FLOAT
  1305. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1306. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1307. select BR2_USE_WCHAR
  1308. select BR2_ENABLE_LOCALE
  1309. select BR2_INSTALL_LIBSTDCPP
  1310. select BR2_TOOLCHAIN_HAS_FORTRAN
  1311. select BR2_TOOLCHAIN_HAS_THREADS
  1312. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1313. select BR2_TOOLCHAIN_HAS_THREADS
  1314. select BR2_TOOLCHAIN_HAS_THREADS
  1315. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1316. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1317. help
  1318. Bootlin toolchain for the mips32 architecture, using the
  1319. uclibc C library. This is a stable version, which means it
  1320. is using stable and proven versions of gcc, gdb and
  1321. binutils.
  1322. https://toolchains.bootlin.com/
  1323. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_GLIBC_BLEEDING_EDGE
  1324. bool "mips32el glibc bleeding-edge 2020.08-1"
  1325. depends on BR2_mipsel
  1326. depends on BR2_mips_32
  1327. depends on !BR2_MIPS_SOFT_FLOAT
  1328. depends on BR2_USE_MMU
  1329. depends on !BR2_STATIC_LIBS
  1330. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1331. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1332. select BR2_INSTALL_LIBSTDCPP
  1333. select BR2_TOOLCHAIN_HAS_FORTRAN
  1334. select BR2_TOOLCHAIN_HAS_SSP
  1335. select BR2_TOOLCHAIN_HAS_THREADS
  1336. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1337. select BR2_TOOLCHAIN_HAS_THREADS
  1338. select BR2_TOOLCHAIN_HAS_THREADS
  1339. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1340. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1341. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1342. help
  1343. Bootlin toolchain for the mips32el architecture, using the
  1344. glibc C library. This is a bleeding-edge version, which
  1345. means it is using the latest versions of gcc, gdb and
  1346. binutils.
  1347. https://toolchains.bootlin.com/
  1348. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_GLIBC_STABLE
  1349. bool "mips32el glibc stable 2020.08-1"
  1350. depends on BR2_mipsel
  1351. depends on BR2_mips_32
  1352. depends on !BR2_MIPS_SOFT_FLOAT
  1353. depends on BR2_USE_MMU
  1354. depends on !BR2_STATIC_LIBS
  1355. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1356. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1357. select BR2_INSTALL_LIBSTDCPP
  1358. select BR2_TOOLCHAIN_HAS_FORTRAN
  1359. select BR2_TOOLCHAIN_HAS_SSP
  1360. select BR2_TOOLCHAIN_HAS_THREADS
  1361. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1362. select BR2_TOOLCHAIN_HAS_THREADS
  1363. select BR2_TOOLCHAIN_HAS_THREADS
  1364. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1365. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1366. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1367. help
  1368. Bootlin toolchain for the mips32el architecture, using the
  1369. glibc C library. This is a stable version, which means it
  1370. is using stable and proven versions of gcc, gdb and
  1371. binutils.
  1372. https://toolchains.bootlin.com/
  1373. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_MUSL_BLEEDING_EDGE
  1374. bool "mips32el musl bleeding-edge 2020.08-1"
  1375. depends on BR2_mipsel
  1376. depends on BR2_mips_32
  1377. depends on !BR2_MIPS_SOFT_FLOAT
  1378. depends on BR2_USE_MMU
  1379. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1380. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1381. select BR2_INSTALL_LIBSTDCPP
  1382. select BR2_TOOLCHAIN_HAS_FORTRAN
  1383. select BR2_TOOLCHAIN_HAS_SSP
  1384. select BR2_TOOLCHAIN_HAS_THREADS
  1385. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1386. select BR2_TOOLCHAIN_HAS_THREADS
  1387. select BR2_TOOLCHAIN_HAS_THREADS
  1388. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1389. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1390. help
  1391. Bootlin toolchain for the mips32el architecture, using the
  1392. musl C library. This is a bleeding-edge version, which
  1393. means it is using the latest versions of gcc, gdb and
  1394. binutils.
  1395. https://toolchains.bootlin.com/
  1396. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_MUSL_STABLE
  1397. bool "mips32el musl stable 2020.08-1"
  1398. depends on BR2_mipsel
  1399. depends on BR2_mips_32
  1400. depends on !BR2_MIPS_SOFT_FLOAT
  1401. depends on BR2_USE_MMU
  1402. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1403. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1404. select BR2_INSTALL_LIBSTDCPP
  1405. select BR2_TOOLCHAIN_HAS_FORTRAN
  1406. select BR2_TOOLCHAIN_HAS_SSP
  1407. select BR2_TOOLCHAIN_HAS_THREADS
  1408. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1409. select BR2_TOOLCHAIN_HAS_THREADS
  1410. select BR2_TOOLCHAIN_HAS_THREADS
  1411. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1412. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1413. help
  1414. Bootlin toolchain for the mips32el architecture, using the
  1415. musl C library. This is a stable version, which means it is
  1416. using stable and proven versions of gcc, gdb and binutils.
  1417. https://toolchains.bootlin.com/
  1418. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_UCLIBC_BLEEDING_EDGE
  1419. bool "mips32el uclibc bleeding-edge 2020.08-1"
  1420. depends on BR2_mipsel
  1421. depends on BR2_mips_32
  1422. depends on !BR2_MIPS_SOFT_FLOAT
  1423. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1424. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1425. select BR2_USE_WCHAR
  1426. select BR2_ENABLE_LOCALE
  1427. select BR2_INSTALL_LIBSTDCPP
  1428. select BR2_TOOLCHAIN_HAS_FORTRAN
  1429. select BR2_TOOLCHAIN_HAS_THREADS
  1430. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1431. select BR2_TOOLCHAIN_HAS_THREADS
  1432. select BR2_TOOLCHAIN_HAS_THREADS
  1433. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1434. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1435. help
  1436. Bootlin toolchain for the mips32el architecture, using the
  1437. uclibc C library. This is a bleeding-edge version, which
  1438. means it is using the latest versions of gcc, gdb and
  1439. binutils.
  1440. https://toolchains.bootlin.com/
  1441. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32EL_UCLIBC_STABLE
  1442. bool "mips32el uclibc stable 2020.08-1"
  1443. depends on BR2_mipsel
  1444. depends on BR2_mips_32
  1445. depends on !BR2_MIPS_SOFT_FLOAT
  1446. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1447. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1448. select BR2_USE_WCHAR
  1449. select BR2_ENABLE_LOCALE
  1450. select BR2_INSTALL_LIBSTDCPP
  1451. select BR2_TOOLCHAIN_HAS_FORTRAN
  1452. select BR2_TOOLCHAIN_HAS_THREADS
  1453. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1454. select BR2_TOOLCHAIN_HAS_THREADS
  1455. select BR2_TOOLCHAIN_HAS_THREADS
  1456. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1457. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1458. help
  1459. Bootlin toolchain for the mips32el architecture, using the
  1460. uclibc C library. This is a stable version, which means it
  1461. is using stable and proven versions of gcc, gdb and
  1462. binutils.
  1463. https://toolchains.bootlin.com/
  1464. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_GLIBC_BLEEDING_EDGE
  1465. bool "mips32r5el glibc bleeding-edge 2020.08-1"
  1466. depends on BR2_mipsel
  1467. depends on BR2_mips_32r5
  1468. depends on !BR2_MIPS_SOFT_FLOAT
  1469. depends on BR2_USE_MMU
  1470. depends on !BR2_STATIC_LIBS
  1471. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1472. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1473. select BR2_INSTALL_LIBSTDCPP
  1474. select BR2_TOOLCHAIN_HAS_FORTRAN
  1475. select BR2_TOOLCHAIN_HAS_SSP
  1476. select BR2_TOOLCHAIN_HAS_THREADS
  1477. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1478. select BR2_TOOLCHAIN_HAS_THREADS
  1479. select BR2_TOOLCHAIN_HAS_THREADS
  1480. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1481. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1482. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1483. help
  1484. Bootlin toolchain for the mips32r5el architecture, using
  1485. the glibc C library. This is a bleeding-edge version, which
  1486. means it is using the latest versions of gcc, gdb and
  1487. binutils.
  1488. https://toolchains.bootlin.com/
  1489. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_GLIBC_STABLE
  1490. bool "mips32r5el glibc stable 2020.08-1"
  1491. depends on BR2_mipsel
  1492. depends on BR2_mips_32r5
  1493. depends on !BR2_MIPS_SOFT_FLOAT
  1494. depends on BR2_USE_MMU
  1495. depends on !BR2_STATIC_LIBS
  1496. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1497. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1498. select BR2_INSTALL_LIBSTDCPP
  1499. select BR2_TOOLCHAIN_HAS_FORTRAN
  1500. select BR2_TOOLCHAIN_HAS_SSP
  1501. select BR2_TOOLCHAIN_HAS_THREADS
  1502. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1503. select BR2_TOOLCHAIN_HAS_THREADS
  1504. select BR2_TOOLCHAIN_HAS_THREADS
  1505. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1506. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1507. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1508. help
  1509. Bootlin toolchain for the mips32r5el architecture, using
  1510. the glibc C library. This is a stable version, which means
  1511. it is using stable and proven versions of gcc, gdb and
  1512. binutils.
  1513. https://toolchains.bootlin.com/
  1514. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_MUSL_BLEEDING_EDGE
  1515. bool "mips32r5el musl bleeding-edge 2020.08-1"
  1516. depends on BR2_mipsel
  1517. depends on BR2_mips_32r5
  1518. depends on !BR2_MIPS_SOFT_FLOAT
  1519. depends on BR2_USE_MMU
  1520. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1521. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1522. select BR2_INSTALL_LIBSTDCPP
  1523. select BR2_TOOLCHAIN_HAS_FORTRAN
  1524. select BR2_TOOLCHAIN_HAS_SSP
  1525. select BR2_TOOLCHAIN_HAS_THREADS
  1526. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1527. select BR2_TOOLCHAIN_HAS_THREADS
  1528. select BR2_TOOLCHAIN_HAS_THREADS
  1529. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1530. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1531. help
  1532. Bootlin toolchain for the mips32r5el architecture, using
  1533. the musl C library. This is a bleeding-edge version, which
  1534. means it is using the latest versions of gcc, gdb and
  1535. binutils.
  1536. https://toolchains.bootlin.com/
  1537. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_MUSL_STABLE
  1538. bool "mips32r5el musl stable 2020.08-1"
  1539. depends on BR2_mipsel
  1540. depends on BR2_mips_32r5
  1541. depends on !BR2_MIPS_SOFT_FLOAT
  1542. depends on BR2_USE_MMU
  1543. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1544. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1545. select BR2_INSTALL_LIBSTDCPP
  1546. select BR2_TOOLCHAIN_HAS_FORTRAN
  1547. select BR2_TOOLCHAIN_HAS_SSP
  1548. select BR2_TOOLCHAIN_HAS_THREADS
  1549. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1550. select BR2_TOOLCHAIN_HAS_THREADS
  1551. select BR2_TOOLCHAIN_HAS_THREADS
  1552. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1553. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1554. help
  1555. Bootlin toolchain for the mips32r5el architecture, using
  1556. the musl C library. This is a stable version, which means
  1557. it is using stable and proven versions of gcc, gdb and
  1558. binutils.
  1559. https://toolchains.bootlin.com/
  1560. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_UCLIBC_BLEEDING_EDGE
  1561. bool "mips32r5el uclibc bleeding-edge 2020.08-1"
  1562. depends on BR2_mipsel
  1563. depends on BR2_mips_32r5
  1564. depends on !BR2_MIPS_SOFT_FLOAT
  1565. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1566. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1567. select BR2_USE_WCHAR
  1568. select BR2_ENABLE_LOCALE
  1569. select BR2_INSTALL_LIBSTDCPP
  1570. select BR2_TOOLCHAIN_HAS_FORTRAN
  1571. select BR2_TOOLCHAIN_HAS_THREADS
  1572. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1573. select BR2_TOOLCHAIN_HAS_THREADS
  1574. select BR2_TOOLCHAIN_HAS_THREADS
  1575. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1576. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1577. help
  1578. Bootlin toolchain for the mips32r5el architecture, using
  1579. the uclibc C library. This is a bleeding-edge version,
  1580. which means it is using the latest versions of gcc, gdb and
  1581. binutils.
  1582. https://toolchains.bootlin.com/
  1583. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R5EL_UCLIBC_STABLE
  1584. bool "mips32r5el uclibc stable 2020.08-1"
  1585. depends on BR2_mipsel
  1586. depends on BR2_mips_32r5
  1587. depends on !BR2_MIPS_SOFT_FLOAT
  1588. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1589. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1590. select BR2_USE_WCHAR
  1591. select BR2_ENABLE_LOCALE
  1592. select BR2_INSTALL_LIBSTDCPP
  1593. select BR2_TOOLCHAIN_HAS_FORTRAN
  1594. select BR2_TOOLCHAIN_HAS_THREADS
  1595. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1596. select BR2_TOOLCHAIN_HAS_THREADS
  1597. select BR2_TOOLCHAIN_HAS_THREADS
  1598. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1599. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1600. help
  1601. Bootlin toolchain for the mips32r5el architecture, using
  1602. the uclibc C library. This is a stable version, which means
  1603. it is using stable and proven versions of gcc, gdb and
  1604. binutils.
  1605. https://toolchains.bootlin.com/
  1606. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_GLIBC_BLEEDING_EDGE
  1607. bool "mips32r6el glibc bleeding-edge 2020.08-1"
  1608. depends on BR2_mipsel
  1609. depends on BR2_mips_32r6
  1610. depends on !BR2_MIPS_SOFT_FLOAT
  1611. depends on BR2_USE_MMU
  1612. depends on !BR2_STATIC_LIBS
  1613. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1614. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1615. select BR2_INSTALL_LIBSTDCPP
  1616. select BR2_TOOLCHAIN_HAS_FORTRAN
  1617. select BR2_TOOLCHAIN_HAS_SSP
  1618. select BR2_TOOLCHAIN_HAS_THREADS
  1619. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1620. select BR2_TOOLCHAIN_HAS_THREADS
  1621. select BR2_TOOLCHAIN_HAS_THREADS
  1622. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1623. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1624. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1625. help
  1626. Bootlin toolchain for the mips32r6el architecture, using
  1627. the glibc C library. This is a bleeding-edge version, which
  1628. means it is using the latest versions of gcc, gdb and
  1629. binutils.
  1630. https://toolchains.bootlin.com/
  1631. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_GLIBC_STABLE
  1632. bool "mips32r6el glibc stable 2020.08-1"
  1633. depends on BR2_mipsel
  1634. depends on BR2_mips_32r6
  1635. depends on !BR2_MIPS_SOFT_FLOAT
  1636. depends on BR2_USE_MMU
  1637. depends on !BR2_STATIC_LIBS
  1638. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1639. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1640. select BR2_INSTALL_LIBSTDCPP
  1641. select BR2_TOOLCHAIN_HAS_FORTRAN
  1642. select BR2_TOOLCHAIN_HAS_SSP
  1643. select BR2_TOOLCHAIN_HAS_THREADS
  1644. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1645. select BR2_TOOLCHAIN_HAS_THREADS
  1646. select BR2_TOOLCHAIN_HAS_THREADS
  1647. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1648. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1649. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1650. help
  1651. Bootlin toolchain for the mips32r6el architecture, using
  1652. the glibc C library. This is a stable version, which means
  1653. it is using stable and proven versions of gcc, gdb and
  1654. binutils.
  1655. https://toolchains.bootlin.com/
  1656. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_MUSL_BLEEDING_EDGE
  1657. bool "mips32r6el musl bleeding-edge 2020.08-1"
  1658. depends on BR2_mipsel
  1659. depends on BR2_mips_32r6
  1660. depends on !BR2_MIPS_SOFT_FLOAT
  1661. depends on BR2_USE_MMU
  1662. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1663. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1664. select BR2_INSTALL_LIBSTDCPP
  1665. select BR2_TOOLCHAIN_HAS_FORTRAN
  1666. select BR2_TOOLCHAIN_HAS_SSP
  1667. select BR2_TOOLCHAIN_HAS_THREADS
  1668. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1669. select BR2_TOOLCHAIN_HAS_THREADS
  1670. select BR2_TOOLCHAIN_HAS_THREADS
  1671. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1672. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1673. help
  1674. Bootlin toolchain for the mips32r6el architecture, using
  1675. the musl C library. This is a bleeding-edge version, which
  1676. means it is using the latest versions of gcc, gdb and
  1677. binutils.
  1678. https://toolchains.bootlin.com/
  1679. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_MUSL_STABLE
  1680. bool "mips32r6el musl stable 2020.08-1"
  1681. depends on BR2_mipsel
  1682. depends on BR2_mips_32r6
  1683. depends on !BR2_MIPS_SOFT_FLOAT
  1684. depends on BR2_USE_MMU
  1685. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1686. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1687. select BR2_INSTALL_LIBSTDCPP
  1688. select BR2_TOOLCHAIN_HAS_FORTRAN
  1689. select BR2_TOOLCHAIN_HAS_SSP
  1690. select BR2_TOOLCHAIN_HAS_THREADS
  1691. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1692. select BR2_TOOLCHAIN_HAS_THREADS
  1693. select BR2_TOOLCHAIN_HAS_THREADS
  1694. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1695. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1696. help
  1697. Bootlin toolchain for the mips32r6el architecture, using
  1698. the musl C library. This is a stable version, which means
  1699. it is using stable and proven versions of gcc, gdb and
  1700. binutils.
  1701. https://toolchains.bootlin.com/
  1702. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_UCLIBC_BLEEDING_EDGE
  1703. bool "mips32r6el uclibc bleeding-edge 2020.08-1"
  1704. depends on BR2_mipsel
  1705. depends on BR2_mips_32r6
  1706. depends on !BR2_MIPS_SOFT_FLOAT
  1707. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1708. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1709. select BR2_USE_WCHAR
  1710. select BR2_ENABLE_LOCALE
  1711. select BR2_INSTALL_LIBSTDCPP
  1712. select BR2_TOOLCHAIN_HAS_FORTRAN
  1713. select BR2_TOOLCHAIN_HAS_THREADS
  1714. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1715. select BR2_TOOLCHAIN_HAS_THREADS
  1716. select BR2_TOOLCHAIN_HAS_THREADS
  1717. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1718. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1719. help
  1720. Bootlin toolchain for the mips32r6el architecture, using
  1721. the uclibc C library. This is a bleeding-edge version,
  1722. which means it is using the latest versions of gcc, gdb and
  1723. binutils.
  1724. https://toolchains.bootlin.com/
  1725. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS32R6EL_UCLIBC_STABLE
  1726. bool "mips32r6el uclibc stable 2020.08-1"
  1727. depends on BR2_mipsel
  1728. depends on BR2_mips_32r6
  1729. depends on !BR2_MIPS_SOFT_FLOAT
  1730. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1731. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1732. select BR2_USE_WCHAR
  1733. select BR2_ENABLE_LOCALE
  1734. select BR2_INSTALL_LIBSTDCPP
  1735. select BR2_TOOLCHAIN_HAS_FORTRAN
  1736. select BR2_TOOLCHAIN_HAS_THREADS
  1737. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1738. select BR2_TOOLCHAIN_HAS_THREADS
  1739. select BR2_TOOLCHAIN_HAS_THREADS
  1740. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1741. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1742. help
  1743. Bootlin toolchain for the mips32r6el architecture, using
  1744. the uclibc C library. This is a stable version, which means
  1745. it is using stable and proven versions of gcc, gdb and
  1746. binutils.
  1747. https://toolchains.bootlin.com/
  1748. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_GLIBC_BLEEDING_EDGE
  1749. bool "mips64-n32 glibc bleeding-edge 2020.08-1"
  1750. depends on BR2_mips64
  1751. depends on BR2_mips_64
  1752. depends on BR2_MIPS_NABI32
  1753. depends on !BR2_MIPS_SOFT_FLOAT
  1754. depends on BR2_USE_MMU
  1755. depends on !BR2_STATIC_LIBS
  1756. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1757. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1758. select BR2_INSTALL_LIBSTDCPP
  1759. select BR2_TOOLCHAIN_HAS_FORTRAN
  1760. select BR2_TOOLCHAIN_HAS_SSP
  1761. select BR2_TOOLCHAIN_HAS_THREADS
  1762. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1763. select BR2_TOOLCHAIN_HAS_THREADS
  1764. select BR2_TOOLCHAIN_HAS_THREADS
  1765. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1766. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1767. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1768. help
  1769. Bootlin toolchain for the mips64-n32 architecture, using
  1770. the glibc C library. This is a bleeding-edge version, which
  1771. means it is using the latest versions of gcc, gdb and
  1772. binutils.
  1773. https://toolchains.bootlin.com/
  1774. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_GLIBC_STABLE
  1775. bool "mips64-n32 glibc stable 2020.08-1"
  1776. depends on BR2_mips64
  1777. depends on BR2_mips_64
  1778. depends on BR2_MIPS_NABI32
  1779. depends on !BR2_MIPS_SOFT_FLOAT
  1780. depends on BR2_USE_MMU
  1781. depends on !BR2_STATIC_LIBS
  1782. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1783. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1784. select BR2_INSTALL_LIBSTDCPP
  1785. select BR2_TOOLCHAIN_HAS_FORTRAN
  1786. select BR2_TOOLCHAIN_HAS_SSP
  1787. select BR2_TOOLCHAIN_HAS_THREADS
  1788. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1789. select BR2_TOOLCHAIN_HAS_THREADS
  1790. select BR2_TOOLCHAIN_HAS_THREADS
  1791. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1792. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1793. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1794. help
  1795. Bootlin toolchain for the mips64-n32 architecture, using
  1796. the glibc C library. This is a stable version, which means
  1797. it is using stable and proven versions of gcc, gdb and
  1798. binutils.
  1799. https://toolchains.bootlin.com/
  1800. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_MUSL_BLEEDING_EDGE
  1801. bool "mips64-n32 musl bleeding-edge 2020.08-1"
  1802. depends on BR2_mips64
  1803. depends on BR2_mips_64
  1804. depends on BR2_MIPS_NABI32
  1805. depends on !BR2_MIPS_SOFT_FLOAT
  1806. depends on BR2_USE_MMU
  1807. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1808. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1809. select BR2_INSTALL_LIBSTDCPP
  1810. select BR2_TOOLCHAIN_HAS_FORTRAN
  1811. select BR2_TOOLCHAIN_HAS_SSP
  1812. select BR2_TOOLCHAIN_HAS_THREADS
  1813. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1814. select BR2_TOOLCHAIN_HAS_THREADS
  1815. select BR2_TOOLCHAIN_HAS_THREADS
  1816. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1817. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1818. help
  1819. Bootlin toolchain for the mips64-n32 architecture, using
  1820. the musl C library. This is a bleeding-edge version, which
  1821. means it is using the latest versions of gcc, gdb and
  1822. binutils.
  1823. https://toolchains.bootlin.com/
  1824. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_MUSL_STABLE
  1825. bool "mips64-n32 musl stable 2020.08-1"
  1826. depends on BR2_mips64
  1827. depends on BR2_mips_64
  1828. depends on BR2_MIPS_NABI32
  1829. depends on !BR2_MIPS_SOFT_FLOAT
  1830. depends on BR2_USE_MMU
  1831. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1832. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1833. select BR2_INSTALL_LIBSTDCPP
  1834. select BR2_TOOLCHAIN_HAS_FORTRAN
  1835. select BR2_TOOLCHAIN_HAS_SSP
  1836. select BR2_TOOLCHAIN_HAS_THREADS
  1837. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1838. select BR2_TOOLCHAIN_HAS_THREADS
  1839. select BR2_TOOLCHAIN_HAS_THREADS
  1840. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1841. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1842. help
  1843. Bootlin toolchain for the mips64-n32 architecture, using
  1844. the musl C library. This is a stable version, which means
  1845. it is using stable and proven versions of gcc, gdb and
  1846. binutils.
  1847. https://toolchains.bootlin.com/
  1848. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_UCLIBC_BLEEDING_EDGE
  1849. bool "mips64-n32 uclibc bleeding-edge 2020.08-1"
  1850. depends on BR2_mips64
  1851. depends on BR2_mips_64
  1852. depends on BR2_MIPS_NABI32
  1853. depends on !BR2_MIPS_SOFT_FLOAT
  1854. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1855. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1856. select BR2_USE_WCHAR
  1857. select BR2_ENABLE_LOCALE
  1858. select BR2_INSTALL_LIBSTDCPP
  1859. select BR2_TOOLCHAIN_HAS_FORTRAN
  1860. select BR2_TOOLCHAIN_HAS_THREADS
  1861. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1862. select BR2_TOOLCHAIN_HAS_THREADS
  1863. select BR2_TOOLCHAIN_HAS_THREADS
  1864. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1865. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1866. help
  1867. Bootlin toolchain for the mips64-n32 architecture, using
  1868. the uclibc C library. This is a bleeding-edge version,
  1869. which means it is using the latest versions of gcc, gdb and
  1870. binutils.
  1871. https://toolchains.bootlin.com/
  1872. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64_N32_UCLIBC_STABLE
  1873. bool "mips64-n32 uclibc stable 2020.08-1"
  1874. depends on BR2_mips64
  1875. depends on BR2_mips_64
  1876. depends on BR2_MIPS_NABI32
  1877. depends on !BR2_MIPS_SOFT_FLOAT
  1878. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1879. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1880. select BR2_USE_WCHAR
  1881. select BR2_ENABLE_LOCALE
  1882. select BR2_INSTALL_LIBSTDCPP
  1883. select BR2_TOOLCHAIN_HAS_FORTRAN
  1884. select BR2_TOOLCHAIN_HAS_THREADS
  1885. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1886. select BR2_TOOLCHAIN_HAS_THREADS
  1887. select BR2_TOOLCHAIN_HAS_THREADS
  1888. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1889. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  1890. help
  1891. Bootlin toolchain for the mips64-n32 architecture, using
  1892. the uclibc C library. This is a stable version, which means
  1893. it is using stable and proven versions of gcc, gdb and
  1894. binutils.
  1895. https://toolchains.bootlin.com/
  1896. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_GLIBC_BLEEDING_EDGE
  1897. bool "mips64el-n32 glibc bleeding-edge 2020.08-1"
  1898. depends on BR2_mips64el
  1899. depends on BR2_mips_64
  1900. depends on BR2_MIPS_NABI32
  1901. depends on !BR2_MIPS_SOFT_FLOAT
  1902. depends on BR2_USE_MMU
  1903. depends on !BR2_STATIC_LIBS
  1904. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1905. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1906. select BR2_INSTALL_LIBSTDCPP
  1907. select BR2_TOOLCHAIN_HAS_FORTRAN
  1908. select BR2_TOOLCHAIN_HAS_SSP
  1909. select BR2_TOOLCHAIN_HAS_THREADS
  1910. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1911. select BR2_TOOLCHAIN_HAS_THREADS
  1912. select BR2_TOOLCHAIN_HAS_THREADS
  1913. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1914. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1915. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1916. help
  1917. Bootlin toolchain for the mips64el-n32 architecture, using
  1918. the glibc C library. This is a bleeding-edge version, which
  1919. means it is using the latest versions of gcc, gdb and
  1920. binutils.
  1921. https://toolchains.bootlin.com/
  1922. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_GLIBC_STABLE
  1923. bool "mips64el-n32 glibc stable 2020.08-1"
  1924. depends on BR2_mips64el
  1925. depends on BR2_mips_64
  1926. depends on BR2_MIPS_NABI32
  1927. depends on !BR2_MIPS_SOFT_FLOAT
  1928. depends on BR2_USE_MMU
  1929. depends on !BR2_STATIC_LIBS
  1930. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1931. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1932. select BR2_INSTALL_LIBSTDCPP
  1933. select BR2_TOOLCHAIN_HAS_FORTRAN
  1934. select BR2_TOOLCHAIN_HAS_SSP
  1935. select BR2_TOOLCHAIN_HAS_THREADS
  1936. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1937. select BR2_TOOLCHAIN_HAS_THREADS
  1938. select BR2_TOOLCHAIN_HAS_THREADS
  1939. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1940. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  1941. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  1942. help
  1943. Bootlin toolchain for the mips64el-n32 architecture, using
  1944. the glibc C library. This is a stable version, which means
  1945. it is using stable and proven versions of gcc, gdb and
  1946. binutils.
  1947. https://toolchains.bootlin.com/
  1948. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_MUSL_BLEEDING_EDGE
  1949. bool "mips64el-n32 musl bleeding-edge 2020.08-1"
  1950. depends on BR2_mips64el
  1951. depends on BR2_mips_64
  1952. depends on BR2_MIPS_NABI32
  1953. depends on !BR2_MIPS_SOFT_FLOAT
  1954. depends on BR2_USE_MMU
  1955. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  1956. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  1957. select BR2_INSTALL_LIBSTDCPP
  1958. select BR2_TOOLCHAIN_HAS_FORTRAN
  1959. select BR2_TOOLCHAIN_HAS_SSP
  1960. select BR2_TOOLCHAIN_HAS_THREADS
  1961. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1962. select BR2_TOOLCHAIN_HAS_THREADS
  1963. select BR2_TOOLCHAIN_HAS_THREADS
  1964. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1965. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1966. help
  1967. Bootlin toolchain for the mips64el-n32 architecture, using
  1968. the musl C library. This is a bleeding-edge version, which
  1969. means it is using the latest versions of gcc, gdb and
  1970. binutils.
  1971. https://toolchains.bootlin.com/
  1972. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_MUSL_STABLE
  1973. bool "mips64el-n32 musl stable 2020.08-1"
  1974. depends on BR2_mips64el
  1975. depends on BR2_mips_64
  1976. depends on BR2_MIPS_NABI32
  1977. depends on !BR2_MIPS_SOFT_FLOAT
  1978. depends on BR2_USE_MMU
  1979. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  1980. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  1981. select BR2_INSTALL_LIBSTDCPP
  1982. select BR2_TOOLCHAIN_HAS_FORTRAN
  1983. select BR2_TOOLCHAIN_HAS_SSP
  1984. select BR2_TOOLCHAIN_HAS_THREADS
  1985. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  1986. select BR2_TOOLCHAIN_HAS_THREADS
  1987. select BR2_TOOLCHAIN_HAS_THREADS
  1988. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  1989. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  1990. help
  1991. Bootlin toolchain for the mips64el-n32 architecture, using
  1992. the musl C library. This is a stable version, which means
  1993. it is using stable and proven versions of gcc, gdb and
  1994. binutils.
  1995. https://toolchains.bootlin.com/
  1996. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_UCLIBC_BLEEDING_EDGE
  1997. bool "mips64el-n32 uclibc bleeding-edge 2020.08-1"
  1998. depends on BR2_mips64el
  1999. depends on BR2_mips_64
  2000. depends on BR2_MIPS_NABI32
  2001. depends on !BR2_MIPS_SOFT_FLOAT
  2002. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2003. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2004. select BR2_USE_WCHAR
  2005. select BR2_ENABLE_LOCALE
  2006. select BR2_INSTALL_LIBSTDCPP
  2007. select BR2_TOOLCHAIN_HAS_FORTRAN
  2008. select BR2_TOOLCHAIN_HAS_THREADS
  2009. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2010. select BR2_TOOLCHAIN_HAS_THREADS
  2011. select BR2_TOOLCHAIN_HAS_THREADS
  2012. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2013. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2014. help
  2015. Bootlin toolchain for the mips64el-n32 architecture, using
  2016. the uclibc C library. This is a bleeding-edge version,
  2017. which means it is using the latest versions of gcc, gdb and
  2018. binutils.
  2019. https://toolchains.bootlin.com/
  2020. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64EL_N32_UCLIBC_STABLE
  2021. bool "mips64el-n32 uclibc stable 2020.08-1"
  2022. depends on BR2_mips64el
  2023. depends on BR2_mips_64
  2024. depends on BR2_MIPS_NABI32
  2025. depends on !BR2_MIPS_SOFT_FLOAT
  2026. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2027. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2028. select BR2_USE_WCHAR
  2029. select BR2_ENABLE_LOCALE
  2030. select BR2_INSTALL_LIBSTDCPP
  2031. select BR2_TOOLCHAIN_HAS_FORTRAN
  2032. select BR2_TOOLCHAIN_HAS_THREADS
  2033. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2034. select BR2_TOOLCHAIN_HAS_THREADS
  2035. select BR2_TOOLCHAIN_HAS_THREADS
  2036. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2037. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2038. help
  2039. Bootlin toolchain for the mips64el-n32 architecture, using
  2040. the uclibc C library. This is a stable version, which means
  2041. it is using stable and proven versions of gcc, gdb and
  2042. binutils.
  2043. https://toolchains.bootlin.com/
  2044. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_GLIBC_BLEEDING_EDGE
  2045. bool "mips64r6el-n32 glibc bleeding-edge 2020.08-1"
  2046. depends on BR2_mips64el
  2047. depends on BR2_mips_64r6
  2048. depends on BR2_MIPS_NABI32
  2049. depends on !BR2_MIPS_SOFT_FLOAT
  2050. depends on BR2_USE_MMU
  2051. depends on !BR2_STATIC_LIBS
  2052. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2053. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2054. select BR2_INSTALL_LIBSTDCPP
  2055. select BR2_TOOLCHAIN_HAS_FORTRAN
  2056. select BR2_TOOLCHAIN_HAS_SSP
  2057. select BR2_TOOLCHAIN_HAS_THREADS
  2058. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2059. select BR2_TOOLCHAIN_HAS_THREADS
  2060. select BR2_TOOLCHAIN_HAS_THREADS
  2061. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2062. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2063. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2064. help
  2065. Bootlin toolchain for the mips64r6el-n32 architecture,
  2066. using the glibc C library. This is a bleeding-edge version,
  2067. which means it is using the latest versions of gcc, gdb and
  2068. binutils.
  2069. https://toolchains.bootlin.com/
  2070. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_GLIBC_STABLE
  2071. bool "mips64r6el-n32 glibc stable 2020.08-1"
  2072. depends on BR2_mips64el
  2073. depends on BR2_mips_64r6
  2074. depends on BR2_MIPS_NABI32
  2075. depends on !BR2_MIPS_SOFT_FLOAT
  2076. depends on BR2_USE_MMU
  2077. depends on !BR2_STATIC_LIBS
  2078. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2079. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2080. select BR2_INSTALL_LIBSTDCPP
  2081. select BR2_TOOLCHAIN_HAS_FORTRAN
  2082. select BR2_TOOLCHAIN_HAS_SSP
  2083. select BR2_TOOLCHAIN_HAS_THREADS
  2084. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2085. select BR2_TOOLCHAIN_HAS_THREADS
  2086. select BR2_TOOLCHAIN_HAS_THREADS
  2087. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2088. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2089. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2090. help
  2091. Bootlin toolchain for the mips64r6el-n32 architecture,
  2092. using the glibc C library. This is a stable version, which
  2093. means it is using stable and proven versions of gcc, gdb
  2094. and binutils.
  2095. https://toolchains.bootlin.com/
  2096. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_MUSL_BLEEDING_EDGE
  2097. bool "mips64r6el-n32 musl bleeding-edge 2020.08-1"
  2098. depends on BR2_mips64el
  2099. depends on BR2_mips_64r6
  2100. depends on BR2_MIPS_NABI32
  2101. depends on !BR2_MIPS_SOFT_FLOAT
  2102. depends on BR2_USE_MMU
  2103. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2104. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2105. select BR2_INSTALL_LIBSTDCPP
  2106. select BR2_TOOLCHAIN_HAS_FORTRAN
  2107. select BR2_TOOLCHAIN_HAS_SSP
  2108. select BR2_TOOLCHAIN_HAS_THREADS
  2109. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2110. select BR2_TOOLCHAIN_HAS_THREADS
  2111. select BR2_TOOLCHAIN_HAS_THREADS
  2112. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2113. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2114. help
  2115. Bootlin toolchain for the mips64r6el-n32 architecture,
  2116. using the musl C library. This is a bleeding-edge version,
  2117. which means it is using the latest versions of gcc, gdb and
  2118. binutils.
  2119. https://toolchains.bootlin.com/
  2120. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_MUSL_STABLE
  2121. bool "mips64r6el-n32 musl stable 2020.08-1"
  2122. depends on BR2_mips64el
  2123. depends on BR2_mips_64r6
  2124. depends on BR2_MIPS_NABI32
  2125. depends on !BR2_MIPS_SOFT_FLOAT
  2126. depends on BR2_USE_MMU
  2127. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2128. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2129. select BR2_INSTALL_LIBSTDCPP
  2130. select BR2_TOOLCHAIN_HAS_FORTRAN
  2131. select BR2_TOOLCHAIN_HAS_SSP
  2132. select BR2_TOOLCHAIN_HAS_THREADS
  2133. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2134. select BR2_TOOLCHAIN_HAS_THREADS
  2135. select BR2_TOOLCHAIN_HAS_THREADS
  2136. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2137. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2138. help
  2139. Bootlin toolchain for the mips64r6el-n32 architecture,
  2140. using the musl C library. This is a stable version, which
  2141. means it is using stable and proven versions of gcc, gdb
  2142. and binutils.
  2143. https://toolchains.bootlin.com/
  2144. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_UCLIBC_BLEEDING_EDGE
  2145. bool "mips64r6el-n32 uclibc bleeding-edge 2020.08-1"
  2146. depends on BR2_mips64el
  2147. depends on BR2_mips_64r6
  2148. depends on BR2_MIPS_NABI32
  2149. depends on !BR2_MIPS_SOFT_FLOAT
  2150. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2151. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2152. select BR2_USE_WCHAR
  2153. select BR2_ENABLE_LOCALE
  2154. select BR2_INSTALL_LIBSTDCPP
  2155. select BR2_TOOLCHAIN_HAS_FORTRAN
  2156. select BR2_TOOLCHAIN_HAS_THREADS
  2157. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2158. select BR2_TOOLCHAIN_HAS_THREADS
  2159. select BR2_TOOLCHAIN_HAS_THREADS
  2160. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2161. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2162. help
  2163. Bootlin toolchain for the mips64r6el-n32 architecture,
  2164. using the uclibc C library. This is a bleeding-edge
  2165. version, which means it is using the latest versions of
  2166. gcc, gdb and binutils.
  2167. https://toolchains.bootlin.com/
  2168. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_MIPS64R6EL_N32_UCLIBC_STABLE
  2169. bool "mips64r6el-n32 uclibc stable 2020.08-1"
  2170. depends on BR2_mips64el
  2171. depends on BR2_mips_64r6
  2172. depends on BR2_MIPS_NABI32
  2173. depends on !BR2_MIPS_SOFT_FLOAT
  2174. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2175. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2176. select BR2_USE_WCHAR
  2177. select BR2_ENABLE_LOCALE
  2178. select BR2_INSTALL_LIBSTDCPP
  2179. select BR2_TOOLCHAIN_HAS_FORTRAN
  2180. select BR2_TOOLCHAIN_HAS_THREADS
  2181. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2182. select BR2_TOOLCHAIN_HAS_THREADS
  2183. select BR2_TOOLCHAIN_HAS_THREADS
  2184. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2185. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2186. help
  2187. Bootlin toolchain for the mips64r6el-n32 architecture,
  2188. using the uclibc C library. This is a stable version, which
  2189. means it is using stable and proven versions of gcc, gdb
  2190. and binutils.
  2191. https://toolchains.bootlin.com/
  2192. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_NIOS2_GLIBC_BLEEDING_EDGE
  2193. bool "nios2 glibc bleeding-edge 2020.08-1"
  2194. depends on BR2_nios2
  2195. depends on BR2_USE_MMU
  2196. depends on !BR2_STATIC_LIBS
  2197. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2198. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2199. select BR2_INSTALL_LIBSTDCPP
  2200. select BR2_TOOLCHAIN_HAS_FORTRAN
  2201. select BR2_TOOLCHAIN_HAS_SSP
  2202. select BR2_TOOLCHAIN_HAS_THREADS
  2203. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2204. select BR2_TOOLCHAIN_HAS_THREADS
  2205. select BR2_TOOLCHAIN_HAS_THREADS
  2206. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2207. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2208. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2209. help
  2210. Bootlin toolchain for the nios2 architecture, using the
  2211. glibc C library. This is a bleeding-edge version, which
  2212. means it is using the latest versions of gcc, gdb and
  2213. binutils.
  2214. https://toolchains.bootlin.com/
  2215. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_NIOS2_GLIBC_STABLE
  2216. bool "nios2 glibc stable 2020.08-1"
  2217. depends on BR2_nios2
  2218. depends on BR2_USE_MMU
  2219. depends on !BR2_STATIC_LIBS
  2220. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2221. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2222. select BR2_INSTALL_LIBSTDCPP
  2223. select BR2_TOOLCHAIN_HAS_FORTRAN
  2224. select BR2_TOOLCHAIN_HAS_SSP
  2225. select BR2_TOOLCHAIN_HAS_THREADS
  2226. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2227. select BR2_TOOLCHAIN_HAS_THREADS
  2228. select BR2_TOOLCHAIN_HAS_THREADS
  2229. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2230. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2231. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2232. help
  2233. Bootlin toolchain for the nios2 architecture, using the
  2234. glibc C library. This is a stable version, which means it
  2235. is using stable and proven versions of gcc, gdb and
  2236. binutils.
  2237. https://toolchains.bootlin.com/
  2238. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_MUSL_BLEEDING_EDGE
  2239. bool "openrisc musl bleeding-edge 2020.08-1"
  2240. depends on BR2_or1k
  2241. depends on BR2_USE_MMU
  2242. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2243. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2244. select BR2_INSTALL_LIBSTDCPP
  2245. select BR2_TOOLCHAIN_HAS_FORTRAN
  2246. select BR2_TOOLCHAIN_HAS_SSP
  2247. select BR2_TOOLCHAIN_HAS_THREADS
  2248. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2249. select BR2_TOOLCHAIN_HAS_THREADS
  2250. select BR2_TOOLCHAIN_HAS_THREADS
  2251. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2252. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2253. help
  2254. Bootlin toolchain for the openrisc architecture, using the
  2255. musl C library. This is a bleeding-edge version, which
  2256. means it is using the latest versions of gcc, gdb and
  2257. binutils.
  2258. https://toolchains.bootlin.com/
  2259. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_MUSL_STABLE
  2260. bool "openrisc musl stable 2020.08-1"
  2261. depends on BR2_or1k
  2262. depends on BR2_USE_MMU
  2263. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2264. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2265. select BR2_INSTALL_LIBSTDCPP
  2266. select BR2_TOOLCHAIN_HAS_FORTRAN
  2267. select BR2_TOOLCHAIN_HAS_SSP
  2268. select BR2_TOOLCHAIN_HAS_THREADS
  2269. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2270. select BR2_TOOLCHAIN_HAS_THREADS
  2271. select BR2_TOOLCHAIN_HAS_THREADS
  2272. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2273. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2274. help
  2275. Bootlin toolchain for the openrisc architecture, using the
  2276. musl C library. This is a stable version, which means it is
  2277. using stable and proven versions of gcc, gdb and binutils.
  2278. https://toolchains.bootlin.com/
  2279. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_UCLIBC_BLEEDING_EDGE
  2280. bool "openrisc uclibc bleeding-edge 2020.08-1"
  2281. depends on BR2_or1k
  2282. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2283. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2284. select BR2_USE_WCHAR
  2285. select BR2_ENABLE_LOCALE
  2286. select BR2_INSTALL_LIBSTDCPP
  2287. select BR2_TOOLCHAIN_HAS_FORTRAN
  2288. select BR2_TOOLCHAIN_HAS_THREADS
  2289. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2290. select BR2_TOOLCHAIN_HAS_THREADS
  2291. select BR2_TOOLCHAIN_HAS_THREADS
  2292. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2293. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2294. help
  2295. Bootlin toolchain for the openrisc architecture, using the
  2296. uclibc C library. This is a bleeding-edge version, which
  2297. means it is using the latest versions of gcc, gdb and
  2298. binutils.
  2299. https://toolchains.bootlin.com/
  2300. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_OPENRISC_UCLIBC_STABLE
  2301. bool "openrisc uclibc stable 2020.08-1"
  2302. depends on BR2_or1k
  2303. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2304. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2305. select BR2_USE_WCHAR
  2306. select BR2_ENABLE_LOCALE
  2307. select BR2_INSTALL_LIBSTDCPP
  2308. select BR2_TOOLCHAIN_HAS_FORTRAN
  2309. select BR2_TOOLCHAIN_HAS_THREADS
  2310. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2311. select BR2_TOOLCHAIN_HAS_THREADS
  2312. select BR2_TOOLCHAIN_HAS_THREADS
  2313. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2314. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2315. help
  2316. Bootlin toolchain for the openrisc architecture, using the
  2317. uclibc C library. This is a stable version, which means it
  2318. is using stable and proven versions of gcc, gdb and
  2319. binutils.
  2320. https://toolchains.bootlin.com/
  2321. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_GLIBC_BLEEDING_EDGE
  2322. bool "powerpc-440fp glibc bleeding-edge 2020.08-1"
  2323. depends on BR2_powerpc
  2324. depends on BR2_powerpc_440fp
  2325. depends on BR2_USE_MMU
  2326. depends on !BR2_STATIC_LIBS
  2327. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2328. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2329. select BR2_INSTALL_LIBSTDCPP
  2330. select BR2_TOOLCHAIN_HAS_FORTRAN
  2331. select BR2_TOOLCHAIN_HAS_SSP
  2332. select BR2_TOOLCHAIN_HAS_THREADS
  2333. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2334. select BR2_TOOLCHAIN_HAS_THREADS
  2335. select BR2_TOOLCHAIN_HAS_THREADS
  2336. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2337. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2338. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2339. help
  2340. Bootlin toolchain for the powerpc-440fp architecture, using
  2341. the glibc C library. This is a bleeding-edge version, which
  2342. means it is using the latest versions of gcc, gdb and
  2343. binutils.
  2344. https://toolchains.bootlin.com/
  2345. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_GLIBC_STABLE
  2346. bool "powerpc-440fp glibc stable 2020.08-1"
  2347. depends on BR2_powerpc
  2348. depends on BR2_powerpc_440fp
  2349. depends on BR2_USE_MMU
  2350. depends on !BR2_STATIC_LIBS
  2351. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2352. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2353. select BR2_INSTALL_LIBSTDCPP
  2354. select BR2_TOOLCHAIN_HAS_FORTRAN
  2355. select BR2_TOOLCHAIN_HAS_SSP
  2356. select BR2_TOOLCHAIN_HAS_THREADS
  2357. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2358. select BR2_TOOLCHAIN_HAS_THREADS
  2359. select BR2_TOOLCHAIN_HAS_THREADS
  2360. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2361. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2362. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2363. help
  2364. Bootlin toolchain for the powerpc-440fp architecture, using
  2365. the glibc C library. This is a stable version, which means
  2366. it is using stable and proven versions of gcc, gdb and
  2367. binutils.
  2368. https://toolchains.bootlin.com/
  2369. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_MUSL_BLEEDING_EDGE
  2370. bool "powerpc-440fp musl bleeding-edge 2020.08-1"
  2371. depends on BR2_powerpc
  2372. depends on BR2_powerpc_440fp
  2373. depends on BR2_USE_MMU
  2374. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2375. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2376. select BR2_INSTALL_LIBSTDCPP
  2377. select BR2_TOOLCHAIN_HAS_FORTRAN
  2378. select BR2_TOOLCHAIN_HAS_THREADS
  2379. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2380. select BR2_TOOLCHAIN_HAS_THREADS
  2381. select BR2_TOOLCHAIN_HAS_THREADS
  2382. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2383. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2384. help
  2385. Bootlin toolchain for the powerpc-440fp architecture, using
  2386. the musl C library. This is a bleeding-edge version, which
  2387. means it is using the latest versions of gcc, gdb and
  2388. binutils.
  2389. https://toolchains.bootlin.com/
  2390. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_MUSL_STABLE
  2391. bool "powerpc-440fp musl stable 2020.08-1"
  2392. depends on BR2_powerpc
  2393. depends on BR2_powerpc_440fp
  2394. depends on BR2_USE_MMU
  2395. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2396. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2397. select BR2_INSTALL_LIBSTDCPP
  2398. select BR2_TOOLCHAIN_HAS_FORTRAN
  2399. select BR2_TOOLCHAIN_HAS_THREADS
  2400. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2401. select BR2_TOOLCHAIN_HAS_THREADS
  2402. select BR2_TOOLCHAIN_HAS_THREADS
  2403. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2404. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2405. help
  2406. Bootlin toolchain for the powerpc-440fp architecture, using
  2407. the musl C library. This is a stable version, which means
  2408. it is using stable and proven versions of gcc, gdb and
  2409. binutils.
  2410. https://toolchains.bootlin.com/
  2411. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_UCLIBC_BLEEDING_EDGE
  2412. bool "powerpc-440fp uclibc bleeding-edge 2020.08-1"
  2413. depends on BR2_powerpc
  2414. depends on BR2_powerpc_440fp
  2415. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2416. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2417. select BR2_USE_WCHAR
  2418. select BR2_ENABLE_LOCALE
  2419. select BR2_INSTALL_LIBSTDCPP
  2420. select BR2_TOOLCHAIN_HAS_FORTRAN
  2421. select BR2_TOOLCHAIN_HAS_THREADS
  2422. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2423. select BR2_TOOLCHAIN_HAS_THREADS
  2424. select BR2_TOOLCHAIN_HAS_THREADS
  2425. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2426. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2427. help
  2428. Bootlin toolchain for the powerpc-440fp architecture, using
  2429. the uclibc C library. This is a bleeding-edge version,
  2430. which means it is using the latest versions of gcc, gdb and
  2431. binutils.
  2432. https://toolchains.bootlin.com/
  2433. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_440FP_UCLIBC_STABLE
  2434. bool "powerpc-440fp uclibc stable 2020.08-1"
  2435. depends on BR2_powerpc
  2436. depends on BR2_powerpc_440fp
  2437. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2438. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2439. select BR2_USE_WCHAR
  2440. select BR2_ENABLE_LOCALE
  2441. select BR2_INSTALL_LIBSTDCPP
  2442. select BR2_TOOLCHAIN_HAS_FORTRAN
  2443. select BR2_TOOLCHAIN_HAS_THREADS
  2444. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2445. select BR2_TOOLCHAIN_HAS_THREADS
  2446. select BR2_TOOLCHAIN_HAS_THREADS
  2447. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2448. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2449. help
  2450. Bootlin toolchain for the powerpc-440fp architecture, using
  2451. the uclibc C library. This is a stable version, which means
  2452. it is using stable and proven versions of gcc, gdb and
  2453. binutils.
  2454. https://toolchains.bootlin.com/
  2455. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_GLIBC_BLEEDING_EDGE
  2456. bool "powerpc-e300c3 glibc bleeding-edge 2020.08-1"
  2457. depends on BR2_powerpc
  2458. depends on BR2_powerpc_e300c3
  2459. depends on BR2_USE_MMU
  2460. depends on !BR2_STATIC_LIBS
  2461. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2462. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2463. select BR2_INSTALL_LIBSTDCPP
  2464. select BR2_TOOLCHAIN_HAS_FORTRAN
  2465. select BR2_TOOLCHAIN_HAS_SSP
  2466. select BR2_TOOLCHAIN_HAS_THREADS
  2467. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2468. select BR2_TOOLCHAIN_HAS_THREADS
  2469. select BR2_TOOLCHAIN_HAS_THREADS
  2470. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2471. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2472. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2473. help
  2474. Bootlin toolchain for the powerpc-e300c3 architecture,
  2475. using the glibc C library. This is a bleeding-edge version,
  2476. which means it is using the latest versions of gcc, gdb and
  2477. binutils.
  2478. https://toolchains.bootlin.com/
  2479. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_GLIBC_STABLE
  2480. bool "powerpc-e300c3 glibc stable 2020.08-1"
  2481. depends on BR2_powerpc
  2482. depends on BR2_powerpc_e300c3
  2483. depends on BR2_USE_MMU
  2484. depends on !BR2_STATIC_LIBS
  2485. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2486. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2487. select BR2_INSTALL_LIBSTDCPP
  2488. select BR2_TOOLCHAIN_HAS_FORTRAN
  2489. select BR2_TOOLCHAIN_HAS_SSP
  2490. select BR2_TOOLCHAIN_HAS_THREADS
  2491. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2492. select BR2_TOOLCHAIN_HAS_THREADS
  2493. select BR2_TOOLCHAIN_HAS_THREADS
  2494. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2495. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2496. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2497. help
  2498. Bootlin toolchain for the powerpc-e300c3 architecture,
  2499. using the glibc C library. This is a stable version, which
  2500. means it is using stable and proven versions of gcc, gdb
  2501. and binutils.
  2502. https://toolchains.bootlin.com/
  2503. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_MUSL_BLEEDING_EDGE
  2504. bool "powerpc-e300c3 musl bleeding-edge 2020.08-1"
  2505. depends on BR2_powerpc
  2506. depends on BR2_powerpc_e300c3
  2507. depends on BR2_USE_MMU
  2508. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2509. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2510. select BR2_INSTALL_LIBSTDCPP
  2511. select BR2_TOOLCHAIN_HAS_FORTRAN
  2512. select BR2_TOOLCHAIN_HAS_THREADS
  2513. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2514. select BR2_TOOLCHAIN_HAS_THREADS
  2515. select BR2_TOOLCHAIN_HAS_THREADS
  2516. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2517. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2518. help
  2519. Bootlin toolchain for the powerpc-e300c3 architecture,
  2520. using the musl C library. This is a bleeding-edge version,
  2521. which means it is using the latest versions of gcc, gdb and
  2522. binutils.
  2523. https://toolchains.bootlin.com/
  2524. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_MUSL_STABLE
  2525. bool "powerpc-e300c3 musl stable 2020.08-1"
  2526. depends on BR2_powerpc
  2527. depends on BR2_powerpc_e300c3
  2528. depends on BR2_USE_MMU
  2529. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2530. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2531. select BR2_INSTALL_LIBSTDCPP
  2532. select BR2_TOOLCHAIN_HAS_FORTRAN
  2533. select BR2_TOOLCHAIN_HAS_THREADS
  2534. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2535. select BR2_TOOLCHAIN_HAS_THREADS
  2536. select BR2_TOOLCHAIN_HAS_THREADS
  2537. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2538. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2539. help
  2540. Bootlin toolchain for the powerpc-e300c3 architecture,
  2541. using the musl C library. This is a stable version, which
  2542. means it is using stable and proven versions of gcc, gdb
  2543. and binutils.
  2544. https://toolchains.bootlin.com/
  2545. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_UCLIBC_BLEEDING_EDGE
  2546. bool "powerpc-e300c3 uclibc bleeding-edge 2020.08-1"
  2547. depends on BR2_powerpc
  2548. depends on BR2_powerpc_e300c3
  2549. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2550. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2551. select BR2_USE_WCHAR
  2552. select BR2_ENABLE_LOCALE
  2553. select BR2_INSTALL_LIBSTDCPP
  2554. select BR2_TOOLCHAIN_HAS_FORTRAN
  2555. select BR2_TOOLCHAIN_HAS_THREADS
  2556. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2557. select BR2_TOOLCHAIN_HAS_THREADS
  2558. select BR2_TOOLCHAIN_HAS_THREADS
  2559. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2560. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2561. help
  2562. Bootlin toolchain for the powerpc-e300c3 architecture,
  2563. using the uclibc C library. This is a bleeding-edge
  2564. version, which means it is using the latest versions of
  2565. gcc, gdb and binutils.
  2566. https://toolchains.bootlin.com/
  2567. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E300C3_UCLIBC_STABLE
  2568. bool "powerpc-e300c3 uclibc stable 2020.08-1"
  2569. depends on BR2_powerpc
  2570. depends on BR2_powerpc_e300c3
  2571. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2572. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2573. select BR2_USE_WCHAR
  2574. select BR2_ENABLE_LOCALE
  2575. select BR2_INSTALL_LIBSTDCPP
  2576. select BR2_TOOLCHAIN_HAS_FORTRAN
  2577. select BR2_TOOLCHAIN_HAS_THREADS
  2578. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2579. select BR2_TOOLCHAIN_HAS_THREADS
  2580. select BR2_TOOLCHAIN_HAS_THREADS
  2581. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2582. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2583. help
  2584. Bootlin toolchain for the powerpc-e300c3 architecture,
  2585. using the uclibc C library. This is a stable version, which
  2586. means it is using stable and proven versions of gcc, gdb
  2587. and binutils.
  2588. https://toolchains.bootlin.com/
  2589. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_GLIBC_BLEEDING_EDGE
  2590. bool "powerpc-e500mc glibc bleeding-edge 2020.08-1"
  2591. depends on BR2_powerpc
  2592. depends on BR2_powerpc_e500mc
  2593. depends on BR2_USE_MMU
  2594. depends on !BR2_STATIC_LIBS
  2595. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2596. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2597. select BR2_INSTALL_LIBSTDCPP
  2598. select BR2_TOOLCHAIN_HAS_FORTRAN
  2599. select BR2_TOOLCHAIN_HAS_SSP
  2600. select BR2_TOOLCHAIN_HAS_THREADS
  2601. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2602. select BR2_TOOLCHAIN_HAS_THREADS
  2603. select BR2_TOOLCHAIN_HAS_THREADS
  2604. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2605. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2606. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2607. help
  2608. Bootlin toolchain for the powerpc-e500mc architecture,
  2609. using the glibc C library. This is a bleeding-edge version,
  2610. which means it is using the latest versions of gcc, gdb and
  2611. binutils.
  2612. https://toolchains.bootlin.com/
  2613. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_GLIBC_STABLE
  2614. bool "powerpc-e500mc glibc stable 2020.08-1"
  2615. depends on BR2_powerpc
  2616. depends on BR2_powerpc_e500mc
  2617. depends on BR2_USE_MMU
  2618. depends on !BR2_STATIC_LIBS
  2619. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2620. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2621. select BR2_INSTALL_LIBSTDCPP
  2622. select BR2_TOOLCHAIN_HAS_FORTRAN
  2623. select BR2_TOOLCHAIN_HAS_SSP
  2624. select BR2_TOOLCHAIN_HAS_THREADS
  2625. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2626. select BR2_TOOLCHAIN_HAS_THREADS
  2627. select BR2_TOOLCHAIN_HAS_THREADS
  2628. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2629. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2630. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2631. help
  2632. Bootlin toolchain for the powerpc-e500mc architecture,
  2633. using the glibc C library. This is a stable version, which
  2634. means it is using stable and proven versions of gcc, gdb
  2635. and binutils.
  2636. https://toolchains.bootlin.com/
  2637. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_MUSL_BLEEDING_EDGE
  2638. bool "powerpc-e500mc musl bleeding-edge 2020.08-1"
  2639. depends on BR2_powerpc
  2640. depends on BR2_powerpc_e500mc
  2641. depends on BR2_USE_MMU
  2642. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2643. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2644. select BR2_INSTALL_LIBSTDCPP
  2645. select BR2_TOOLCHAIN_HAS_FORTRAN
  2646. select BR2_TOOLCHAIN_HAS_THREADS
  2647. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2648. select BR2_TOOLCHAIN_HAS_THREADS
  2649. select BR2_TOOLCHAIN_HAS_THREADS
  2650. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2651. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2652. help
  2653. Bootlin toolchain for the powerpc-e500mc architecture,
  2654. using the musl C library. This is a bleeding-edge version,
  2655. which means it is using the latest versions of gcc, gdb and
  2656. binutils.
  2657. https://toolchains.bootlin.com/
  2658. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_MUSL_STABLE
  2659. bool "powerpc-e500mc musl stable 2020.08-1"
  2660. depends on BR2_powerpc
  2661. depends on BR2_powerpc_e500mc
  2662. depends on BR2_USE_MMU
  2663. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2664. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2665. select BR2_INSTALL_LIBSTDCPP
  2666. select BR2_TOOLCHAIN_HAS_FORTRAN
  2667. select BR2_TOOLCHAIN_HAS_THREADS
  2668. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2669. select BR2_TOOLCHAIN_HAS_THREADS
  2670. select BR2_TOOLCHAIN_HAS_THREADS
  2671. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2672. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2673. help
  2674. Bootlin toolchain for the powerpc-e500mc architecture,
  2675. using the musl C library. This is a stable version, which
  2676. means it is using stable and proven versions of gcc, gdb
  2677. and binutils.
  2678. https://toolchains.bootlin.com/
  2679. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_UCLIBC_BLEEDING_EDGE
  2680. bool "powerpc-e500mc uclibc bleeding-edge 2020.08-1"
  2681. depends on BR2_powerpc
  2682. depends on BR2_powerpc_e500mc
  2683. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2684. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2685. select BR2_USE_WCHAR
  2686. select BR2_ENABLE_LOCALE
  2687. select BR2_INSTALL_LIBSTDCPP
  2688. select BR2_TOOLCHAIN_HAS_FORTRAN
  2689. select BR2_TOOLCHAIN_HAS_THREADS
  2690. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2691. select BR2_TOOLCHAIN_HAS_THREADS
  2692. select BR2_TOOLCHAIN_HAS_THREADS
  2693. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2694. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2695. help
  2696. Bootlin toolchain for the powerpc-e500mc architecture,
  2697. using the uclibc C library. This is a bleeding-edge
  2698. version, which means it is using the latest versions of
  2699. gcc, gdb and binutils.
  2700. https://toolchains.bootlin.com/
  2701. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC_E500MC_UCLIBC_STABLE
  2702. bool "powerpc-e500mc uclibc stable 2020.08-1"
  2703. depends on BR2_powerpc
  2704. depends on BR2_powerpc_e500mc
  2705. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2706. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2707. select BR2_USE_WCHAR
  2708. select BR2_ENABLE_LOCALE
  2709. select BR2_INSTALL_LIBSTDCPP
  2710. select BR2_TOOLCHAIN_HAS_FORTRAN
  2711. select BR2_TOOLCHAIN_HAS_THREADS
  2712. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2713. select BR2_TOOLCHAIN_HAS_THREADS
  2714. select BR2_TOOLCHAIN_HAS_THREADS
  2715. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2716. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  2717. help
  2718. Bootlin toolchain for the powerpc-e500mc architecture,
  2719. using the uclibc C library. This is a stable version, which
  2720. means it is using stable and proven versions of gcc, gdb
  2721. and binutils.
  2722. https://toolchains.bootlin.com/
  2723. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E5500_GLIBC_BLEEDING_EDGE
  2724. bool "powerpc64-e5500 glibc bleeding-edge 2020.08-1"
  2725. depends on BR2_powerpc64
  2726. depends on BR2_powerpc_e5500
  2727. depends on BR2_USE_MMU
  2728. depends on !BR2_STATIC_LIBS
  2729. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2730. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2731. select BR2_INSTALL_LIBSTDCPP
  2732. select BR2_TOOLCHAIN_HAS_FORTRAN
  2733. select BR2_TOOLCHAIN_HAS_SSP
  2734. select BR2_TOOLCHAIN_HAS_THREADS
  2735. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2736. select BR2_TOOLCHAIN_HAS_THREADS
  2737. select BR2_TOOLCHAIN_HAS_THREADS
  2738. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2739. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2740. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2741. help
  2742. Bootlin toolchain for the powerpc64-e5500 architecture,
  2743. using the glibc C library. This is a bleeding-edge version,
  2744. which means it is using the latest versions of gcc, gdb and
  2745. binutils.
  2746. https://toolchains.bootlin.com/
  2747. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E5500_GLIBC_STABLE
  2748. bool "powerpc64-e5500 glibc stable 2020.08-1"
  2749. depends on BR2_powerpc64
  2750. depends on BR2_powerpc_e5500
  2751. depends on BR2_USE_MMU
  2752. depends on !BR2_STATIC_LIBS
  2753. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2754. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2755. select BR2_INSTALL_LIBSTDCPP
  2756. select BR2_TOOLCHAIN_HAS_FORTRAN
  2757. select BR2_TOOLCHAIN_HAS_SSP
  2758. select BR2_TOOLCHAIN_HAS_THREADS
  2759. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2760. select BR2_TOOLCHAIN_HAS_THREADS
  2761. select BR2_TOOLCHAIN_HAS_THREADS
  2762. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2763. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2764. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2765. help
  2766. Bootlin toolchain for the powerpc64-e5500 architecture,
  2767. using the glibc C library. This is a stable version, which
  2768. means it is using stable and proven versions of gcc, gdb
  2769. and binutils.
  2770. https://toolchains.bootlin.com/
  2771. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_GLIBC_BLEEDING_EDGE
  2772. bool "powerpc64-e6500 glibc bleeding-edge 2020.08-1"
  2773. depends on BR2_powerpc64
  2774. depends on BR2_powerpc_e6500
  2775. depends on BR2_USE_MMU
  2776. depends on !BR2_STATIC_LIBS
  2777. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2778. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2779. select BR2_INSTALL_LIBSTDCPP
  2780. select BR2_TOOLCHAIN_HAS_FORTRAN
  2781. select BR2_TOOLCHAIN_HAS_SSP
  2782. select BR2_TOOLCHAIN_HAS_THREADS
  2783. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2784. select BR2_TOOLCHAIN_HAS_THREADS
  2785. select BR2_TOOLCHAIN_HAS_THREADS
  2786. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2787. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2788. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2789. help
  2790. Bootlin toolchain for the powerpc64-e6500 architecture,
  2791. using the glibc C library. This is a bleeding-edge version,
  2792. which means it is using the latest versions of gcc, gdb and
  2793. binutils.
  2794. https://toolchains.bootlin.com/
  2795. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_GLIBC_STABLE
  2796. bool "powerpc64-e6500 glibc stable 2020.08-1"
  2797. depends on BR2_powerpc64
  2798. depends on BR2_powerpc_e6500
  2799. depends on BR2_USE_MMU
  2800. depends on !BR2_STATIC_LIBS
  2801. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2802. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2803. select BR2_INSTALL_LIBSTDCPP
  2804. select BR2_TOOLCHAIN_HAS_FORTRAN
  2805. select BR2_TOOLCHAIN_HAS_SSP
  2806. select BR2_TOOLCHAIN_HAS_THREADS
  2807. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2808. select BR2_TOOLCHAIN_HAS_THREADS
  2809. select BR2_TOOLCHAIN_HAS_THREADS
  2810. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2811. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2812. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2813. help
  2814. Bootlin toolchain for the powerpc64-e6500 architecture,
  2815. using the glibc C library. This is a stable version, which
  2816. means it is using stable and proven versions of gcc, gdb
  2817. and binutils.
  2818. https://toolchains.bootlin.com/
  2819. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_MUSL_BLEEDING_EDGE
  2820. bool "powerpc64-e6500 musl bleeding-edge 2020.08-1"
  2821. depends on BR2_powerpc64
  2822. depends on BR2_powerpc_e6500
  2823. depends on BR2_USE_MMU
  2824. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2825. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2826. select BR2_INSTALL_LIBSTDCPP
  2827. select BR2_TOOLCHAIN_HAS_FORTRAN
  2828. select BR2_TOOLCHAIN_HAS_SSP
  2829. select BR2_TOOLCHAIN_HAS_THREADS
  2830. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2831. select BR2_TOOLCHAIN_HAS_THREADS
  2832. select BR2_TOOLCHAIN_HAS_THREADS
  2833. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2834. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2835. help
  2836. Bootlin toolchain for the powerpc64-e6500 architecture,
  2837. using the musl C library. This is a bleeding-edge version,
  2838. which means it is using the latest versions of gcc, gdb and
  2839. binutils.
  2840. https://toolchains.bootlin.com/
  2841. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_E6500_MUSL_STABLE
  2842. bool "powerpc64-e6500 musl stable 2020.08-1"
  2843. depends on BR2_powerpc64
  2844. depends on BR2_powerpc_e6500
  2845. depends on BR2_USE_MMU
  2846. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2847. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2848. select BR2_INSTALL_LIBSTDCPP
  2849. select BR2_TOOLCHAIN_HAS_FORTRAN
  2850. select BR2_TOOLCHAIN_HAS_SSP
  2851. select BR2_TOOLCHAIN_HAS_THREADS
  2852. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2853. select BR2_TOOLCHAIN_HAS_THREADS
  2854. select BR2_TOOLCHAIN_HAS_THREADS
  2855. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2856. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2857. help
  2858. Bootlin toolchain for the powerpc64-e6500 architecture,
  2859. using the musl C library. This is a stable version, which
  2860. means it is using stable and proven versions of gcc, gdb
  2861. and binutils.
  2862. https://toolchains.bootlin.com/
  2863. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_GLIBC_BLEEDING_EDGE
  2864. bool "powerpc64-power8 glibc bleeding-edge 2020.08-1"
  2865. depends on BR2_powerpc64
  2866. depends on BR2_powerpc_power8
  2867. depends on BR2_USE_MMU
  2868. depends on !BR2_STATIC_LIBS
  2869. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2870. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2871. select BR2_INSTALL_LIBSTDCPP
  2872. select BR2_TOOLCHAIN_HAS_FORTRAN
  2873. select BR2_TOOLCHAIN_HAS_SSP
  2874. select BR2_TOOLCHAIN_HAS_THREADS
  2875. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2876. select BR2_TOOLCHAIN_HAS_THREADS
  2877. select BR2_TOOLCHAIN_HAS_THREADS
  2878. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2879. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2880. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2881. help
  2882. Bootlin toolchain for the powerpc64-power8 architecture,
  2883. using the glibc C library. This is a bleeding-edge version,
  2884. which means it is using the latest versions of gcc, gdb and
  2885. binutils.
  2886. https://toolchains.bootlin.com/
  2887. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_GLIBC_STABLE
  2888. bool "powerpc64-power8 glibc stable 2020.08-1"
  2889. depends on BR2_powerpc64
  2890. depends on BR2_powerpc_power8
  2891. depends on BR2_USE_MMU
  2892. depends on !BR2_STATIC_LIBS
  2893. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2894. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2895. select BR2_INSTALL_LIBSTDCPP
  2896. select BR2_TOOLCHAIN_HAS_FORTRAN
  2897. select BR2_TOOLCHAIN_HAS_SSP
  2898. select BR2_TOOLCHAIN_HAS_THREADS
  2899. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2900. select BR2_TOOLCHAIN_HAS_THREADS
  2901. select BR2_TOOLCHAIN_HAS_THREADS
  2902. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2903. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2904. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2905. help
  2906. Bootlin toolchain for the powerpc64-power8 architecture,
  2907. using the glibc C library. This is a stable version, which
  2908. means it is using stable and proven versions of gcc, gdb
  2909. and binutils.
  2910. https://toolchains.bootlin.com/
  2911. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_MUSL_BLEEDING_EDGE
  2912. bool "powerpc64-power8 musl bleeding-edge 2020.08-1"
  2913. depends on BR2_powerpc64
  2914. depends on BR2_powerpc_power8
  2915. depends on BR2_USE_MMU
  2916. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2917. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2918. select BR2_INSTALL_LIBSTDCPP
  2919. select BR2_TOOLCHAIN_HAS_FORTRAN
  2920. select BR2_TOOLCHAIN_HAS_SSP
  2921. select BR2_TOOLCHAIN_HAS_THREADS
  2922. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2923. select BR2_TOOLCHAIN_HAS_THREADS
  2924. select BR2_TOOLCHAIN_HAS_THREADS
  2925. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2926. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2927. help
  2928. Bootlin toolchain for the powerpc64-power8 architecture,
  2929. using the musl C library. This is a bleeding-edge version,
  2930. which means it is using the latest versions of gcc, gdb and
  2931. binutils.
  2932. https://toolchains.bootlin.com/
  2933. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64_POWER8_MUSL_STABLE
  2934. bool "powerpc64-power8 musl stable 2020.08-1"
  2935. depends on BR2_powerpc64
  2936. depends on BR2_powerpc_power8
  2937. depends on BR2_USE_MMU
  2938. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2939. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2940. select BR2_INSTALL_LIBSTDCPP
  2941. select BR2_TOOLCHAIN_HAS_FORTRAN
  2942. select BR2_TOOLCHAIN_HAS_SSP
  2943. select BR2_TOOLCHAIN_HAS_THREADS
  2944. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2945. select BR2_TOOLCHAIN_HAS_THREADS
  2946. select BR2_TOOLCHAIN_HAS_THREADS
  2947. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2948. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  2949. help
  2950. Bootlin toolchain for the powerpc64-power8 architecture,
  2951. using the musl C library. This is a stable version, which
  2952. means it is using stable and proven versions of gcc, gdb
  2953. and binutils.
  2954. https://toolchains.bootlin.com/
  2955. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_GLIBC_BLEEDING_EDGE
  2956. bool "powerpc64le-power8 glibc bleeding-edge 2020.08-1"
  2957. depends on BR2_powerpc64le
  2958. depends on BR2_powerpc_power8
  2959. depends on BR2_USE_MMU
  2960. depends on !BR2_STATIC_LIBS
  2961. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  2962. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  2963. select BR2_INSTALL_LIBSTDCPP
  2964. select BR2_TOOLCHAIN_HAS_FORTRAN
  2965. select BR2_TOOLCHAIN_HAS_SSP
  2966. select BR2_TOOLCHAIN_HAS_THREADS
  2967. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2968. select BR2_TOOLCHAIN_HAS_THREADS
  2969. select BR2_TOOLCHAIN_HAS_THREADS
  2970. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2971. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2972. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2973. help
  2974. Bootlin toolchain for the powerpc64le-power8 architecture,
  2975. using the glibc C library. This is a bleeding-edge version,
  2976. which means it is using the latest versions of gcc, gdb and
  2977. binutils.
  2978. https://toolchains.bootlin.com/
  2979. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_GLIBC_STABLE
  2980. bool "powerpc64le-power8 glibc stable 2020.08-1"
  2981. depends on BR2_powerpc64le
  2982. depends on BR2_powerpc_power8
  2983. depends on BR2_USE_MMU
  2984. depends on !BR2_STATIC_LIBS
  2985. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  2986. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  2987. select BR2_INSTALL_LIBSTDCPP
  2988. select BR2_TOOLCHAIN_HAS_FORTRAN
  2989. select BR2_TOOLCHAIN_HAS_SSP
  2990. select BR2_TOOLCHAIN_HAS_THREADS
  2991. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  2992. select BR2_TOOLCHAIN_HAS_THREADS
  2993. select BR2_TOOLCHAIN_HAS_THREADS
  2994. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  2995. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  2996. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  2997. help
  2998. Bootlin toolchain for the powerpc64le-power8 architecture,
  2999. using the glibc C library. This is a stable version, which
  3000. means it is using stable and proven versions of gcc, gdb
  3001. and binutils.
  3002. https://toolchains.bootlin.com/
  3003. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_MUSL_BLEEDING_EDGE
  3004. bool "powerpc64le-power8 musl bleeding-edge 2020.08-1"
  3005. depends on BR2_powerpc64le
  3006. depends on BR2_powerpc_power8
  3007. depends on BR2_USE_MMU
  3008. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3009. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3010. select BR2_INSTALL_LIBSTDCPP
  3011. select BR2_TOOLCHAIN_HAS_FORTRAN
  3012. select BR2_TOOLCHAIN_HAS_SSP
  3013. select BR2_TOOLCHAIN_HAS_THREADS
  3014. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3015. select BR2_TOOLCHAIN_HAS_THREADS
  3016. select BR2_TOOLCHAIN_HAS_THREADS
  3017. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3018. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3019. help
  3020. Bootlin toolchain for the powerpc64le-power8 architecture,
  3021. using the musl C library. This is a bleeding-edge version,
  3022. which means it is using the latest versions of gcc, gdb and
  3023. binutils.
  3024. https://toolchains.bootlin.com/
  3025. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_POWERPC64LE_POWER8_MUSL_STABLE
  3026. bool "powerpc64le-power8 musl stable 2020.08-1"
  3027. depends on BR2_powerpc64le
  3028. depends on BR2_powerpc_power8
  3029. depends on BR2_USE_MMU
  3030. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3031. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3032. select BR2_INSTALL_LIBSTDCPP
  3033. select BR2_TOOLCHAIN_HAS_FORTRAN
  3034. select BR2_TOOLCHAIN_HAS_SSP
  3035. select BR2_TOOLCHAIN_HAS_THREADS
  3036. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3037. select BR2_TOOLCHAIN_HAS_THREADS
  3038. select BR2_TOOLCHAIN_HAS_THREADS
  3039. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3040. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3041. help
  3042. Bootlin toolchain for the powerpc64le-power8 architecture,
  3043. using the musl C library. This is a stable version, which
  3044. means it is using stable and proven versions of gcc, gdb
  3045. and binutils.
  3046. https://toolchains.bootlin.com/
  3047. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV32_ILP32D_GLIBC_BLEEDING_EDGE
  3048. bool "riscv32-ilp32d glibc bleeding-edge 2020.08-1"
  3049. depends on BR2_riscv
  3050. depends on BR2_riscv_g
  3051. depends on BR2_RISCV_32
  3052. depends on BR2_RISCV_ABI_ILP32D
  3053. depends on BR2_USE_MMU
  3054. depends on !BR2_STATIC_LIBS
  3055. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3056. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3057. select BR2_INSTALL_LIBSTDCPP
  3058. select BR2_TOOLCHAIN_HAS_FORTRAN
  3059. select BR2_TOOLCHAIN_HAS_SSP
  3060. select BR2_TOOLCHAIN_HAS_THREADS
  3061. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3062. select BR2_TOOLCHAIN_HAS_THREADS
  3063. select BR2_TOOLCHAIN_HAS_THREADS
  3064. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3065. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3066. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3067. help
  3068. Bootlin toolchain for the riscv32-ilp32d architecture,
  3069. using the glibc C library. This is a bleeding-edge version,
  3070. which means it is using the latest versions of gcc, gdb and
  3071. binutils.
  3072. https://toolchains.bootlin.com/
  3073. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_GLIBC_BLEEDING_EDGE
  3074. bool "riscv64 glibc bleeding-edge 2020.08-1"
  3075. depends on BR2_riscv
  3076. depends on BR2_riscv_g
  3077. depends on BR2_RISCV_64
  3078. depends on BR2_RISCV_ABI_LP64
  3079. depends on BR2_USE_MMU
  3080. depends on !BR2_STATIC_LIBS
  3081. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3082. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3083. select BR2_INSTALL_LIBSTDCPP
  3084. select BR2_TOOLCHAIN_HAS_FORTRAN
  3085. select BR2_TOOLCHAIN_HAS_SSP
  3086. select BR2_TOOLCHAIN_HAS_THREADS
  3087. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3088. select BR2_TOOLCHAIN_HAS_THREADS
  3089. select BR2_TOOLCHAIN_HAS_THREADS
  3090. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3091. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3092. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3093. help
  3094. Bootlin toolchain for the riscv64 architecture, using the
  3095. glibc C library. This is a bleeding-edge version, which
  3096. means it is using the latest versions of gcc, gdb and
  3097. binutils.
  3098. https://toolchains.bootlin.com/
  3099. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_RISCV64_MUSL_BLEEDING_EDGE
  3100. bool "riscv64 musl bleeding-edge 2020.08-1"
  3101. depends on BR2_riscv
  3102. depends on BR2_riscv_g
  3103. depends on BR2_RISCV_64
  3104. depends on BR2_RISCV_ABI_LP64
  3105. depends on BR2_USE_MMU
  3106. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3107. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3108. select BR2_INSTALL_LIBSTDCPP
  3109. select BR2_TOOLCHAIN_HAS_FORTRAN
  3110. select BR2_TOOLCHAIN_HAS_SSP
  3111. select BR2_TOOLCHAIN_HAS_THREADS
  3112. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3113. select BR2_TOOLCHAIN_HAS_THREADS
  3114. select BR2_TOOLCHAIN_HAS_THREADS
  3115. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3116. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3117. help
  3118. Bootlin toolchain for the riscv64 architecture, using the
  3119. musl C library. This is a bleeding-edge version, which
  3120. means it is using the latest versions of gcc, gdb and
  3121. binutils.
  3122. https://toolchains.bootlin.com/
  3123. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_GLIBC_BLEEDING_EDGE
  3124. bool "sh-sh4 glibc bleeding-edge 2020.08-1"
  3125. depends on BR2_sh
  3126. depends on BR2_sh4
  3127. depends on BR2_USE_MMU
  3128. depends on !BR2_STATIC_LIBS
  3129. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3130. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3131. select BR2_INSTALL_LIBSTDCPP
  3132. select BR2_TOOLCHAIN_HAS_FORTRAN
  3133. select BR2_TOOLCHAIN_HAS_SSP
  3134. select BR2_TOOLCHAIN_HAS_THREADS
  3135. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3136. select BR2_TOOLCHAIN_HAS_THREADS
  3137. select BR2_TOOLCHAIN_HAS_THREADS
  3138. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3139. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3140. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3141. help
  3142. Bootlin toolchain for the sh-sh4 architecture, using the
  3143. glibc C library. This is a bleeding-edge version, which
  3144. means it is using the latest versions of gcc, gdb and
  3145. binutils.
  3146. https://toolchains.bootlin.com/
  3147. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_GLIBC_STABLE
  3148. bool "sh-sh4 glibc stable 2020.08-1"
  3149. depends on BR2_sh
  3150. depends on BR2_sh4
  3151. depends on BR2_USE_MMU
  3152. depends on !BR2_STATIC_LIBS
  3153. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3154. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3155. select BR2_INSTALL_LIBSTDCPP
  3156. select BR2_TOOLCHAIN_HAS_FORTRAN
  3157. select BR2_TOOLCHAIN_HAS_SSP
  3158. select BR2_TOOLCHAIN_HAS_THREADS
  3159. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3160. select BR2_TOOLCHAIN_HAS_THREADS
  3161. select BR2_TOOLCHAIN_HAS_THREADS
  3162. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3163. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3164. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3165. help
  3166. Bootlin toolchain for the sh-sh4 architecture, using the
  3167. glibc C library. This is a stable version, which means it
  3168. is using stable and proven versions of gcc, gdb and
  3169. binutils.
  3170. https://toolchains.bootlin.com/
  3171. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_MUSL_BLEEDING_EDGE
  3172. bool "sh-sh4 musl bleeding-edge 2020.08-1"
  3173. depends on BR2_sh
  3174. depends on BR2_sh4
  3175. depends on BR2_USE_MMU
  3176. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3177. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3178. select BR2_INSTALL_LIBSTDCPP
  3179. select BR2_TOOLCHAIN_HAS_FORTRAN
  3180. select BR2_TOOLCHAIN_HAS_SSP
  3181. select BR2_TOOLCHAIN_HAS_THREADS
  3182. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3183. select BR2_TOOLCHAIN_HAS_THREADS
  3184. select BR2_TOOLCHAIN_HAS_THREADS
  3185. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3186. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3187. help
  3188. Bootlin toolchain for the sh-sh4 architecture, using the
  3189. musl C library. This is a bleeding-edge version, which
  3190. means it is using the latest versions of gcc, gdb and
  3191. binutils.
  3192. https://toolchains.bootlin.com/
  3193. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_MUSL_STABLE
  3194. bool "sh-sh4 musl stable 2020.08-1"
  3195. depends on BR2_sh
  3196. depends on BR2_sh4
  3197. depends on BR2_USE_MMU
  3198. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3199. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3200. select BR2_INSTALL_LIBSTDCPP
  3201. select BR2_TOOLCHAIN_HAS_FORTRAN
  3202. select BR2_TOOLCHAIN_HAS_SSP
  3203. select BR2_TOOLCHAIN_HAS_THREADS
  3204. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3205. select BR2_TOOLCHAIN_HAS_THREADS
  3206. select BR2_TOOLCHAIN_HAS_THREADS
  3207. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3208. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3209. help
  3210. Bootlin toolchain for the sh-sh4 architecture, using the
  3211. musl C library. This is a stable version, which means it is
  3212. using stable and proven versions of gcc, gdb and binutils.
  3213. https://toolchains.bootlin.com/
  3214. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_UCLIBC_BLEEDING_EDGE
  3215. bool "sh-sh4 uclibc bleeding-edge 2020.08-1"
  3216. depends on BR2_sh
  3217. depends on BR2_sh4
  3218. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3219. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3220. select BR2_USE_WCHAR
  3221. select BR2_ENABLE_LOCALE
  3222. select BR2_INSTALL_LIBSTDCPP
  3223. select BR2_TOOLCHAIN_HAS_FORTRAN
  3224. select BR2_TOOLCHAIN_HAS_THREADS
  3225. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3226. select BR2_TOOLCHAIN_HAS_THREADS
  3227. select BR2_TOOLCHAIN_HAS_THREADS
  3228. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3229. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3230. help
  3231. Bootlin toolchain for the sh-sh4 architecture, using the
  3232. uclibc C library. This is a bleeding-edge version, which
  3233. means it is using the latest versions of gcc, gdb and
  3234. binutils.
  3235. https://toolchains.bootlin.com/
  3236. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4_UCLIBC_STABLE
  3237. bool "sh-sh4 uclibc stable 2020.08-1"
  3238. depends on BR2_sh
  3239. depends on BR2_sh4
  3240. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3241. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3242. select BR2_USE_WCHAR
  3243. select BR2_ENABLE_LOCALE
  3244. select BR2_INSTALL_LIBSTDCPP
  3245. select BR2_TOOLCHAIN_HAS_FORTRAN
  3246. select BR2_TOOLCHAIN_HAS_THREADS
  3247. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3248. select BR2_TOOLCHAIN_HAS_THREADS
  3249. select BR2_TOOLCHAIN_HAS_THREADS
  3250. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3251. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3252. help
  3253. Bootlin toolchain for the sh-sh4 architecture, using the
  3254. uclibc C library. This is a stable version, which means it
  3255. is using stable and proven versions of gcc, gdb and
  3256. binutils.
  3257. https://toolchains.bootlin.com/
  3258. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_GLIBC_BLEEDING_EDGE
  3259. bool "sh-sh4aeb glibc bleeding-edge 2020.08-1"
  3260. depends on BR2_sh
  3261. depends on BR2_sh4aeb
  3262. depends on BR2_USE_MMU
  3263. depends on !BR2_STATIC_LIBS
  3264. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3265. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3266. select BR2_INSTALL_LIBSTDCPP
  3267. select BR2_TOOLCHAIN_HAS_FORTRAN
  3268. select BR2_TOOLCHAIN_HAS_SSP
  3269. select BR2_TOOLCHAIN_HAS_THREADS
  3270. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3271. select BR2_TOOLCHAIN_HAS_THREADS
  3272. select BR2_TOOLCHAIN_HAS_THREADS
  3273. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3274. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3275. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3276. help
  3277. Bootlin toolchain for the sh-sh4aeb architecture, using the
  3278. glibc C library. This is a bleeding-edge version, which
  3279. means it is using the latest versions of gcc, gdb and
  3280. binutils.
  3281. https://toolchains.bootlin.com/
  3282. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_GLIBC_STABLE
  3283. bool "sh-sh4aeb glibc stable 2020.08-1"
  3284. depends on BR2_sh
  3285. depends on BR2_sh4aeb
  3286. depends on BR2_USE_MMU
  3287. depends on !BR2_STATIC_LIBS
  3288. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3289. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3290. select BR2_INSTALL_LIBSTDCPP
  3291. select BR2_TOOLCHAIN_HAS_FORTRAN
  3292. select BR2_TOOLCHAIN_HAS_SSP
  3293. select BR2_TOOLCHAIN_HAS_THREADS
  3294. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3295. select BR2_TOOLCHAIN_HAS_THREADS
  3296. select BR2_TOOLCHAIN_HAS_THREADS
  3297. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3298. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3299. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3300. help
  3301. Bootlin toolchain for the sh-sh4aeb architecture, using the
  3302. glibc C library. This is a stable version, which means it
  3303. is using stable and proven versions of gcc, gdb and
  3304. binutils.
  3305. https://toolchains.bootlin.com/
  3306. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_MUSL_BLEEDING_EDGE
  3307. bool "sh-sh4aeb musl bleeding-edge 2020.08-1"
  3308. depends on BR2_sh
  3309. depends on BR2_sh4aeb
  3310. depends on BR2_USE_MMU
  3311. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3312. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3313. select BR2_INSTALL_LIBSTDCPP
  3314. select BR2_TOOLCHAIN_HAS_FORTRAN
  3315. select BR2_TOOLCHAIN_HAS_SSP
  3316. select BR2_TOOLCHAIN_HAS_THREADS
  3317. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3318. select BR2_TOOLCHAIN_HAS_THREADS
  3319. select BR2_TOOLCHAIN_HAS_THREADS
  3320. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3321. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3322. help
  3323. Bootlin toolchain for the sh-sh4aeb architecture, using the
  3324. musl C library. This is a bleeding-edge version, which
  3325. means it is using the latest versions of gcc, gdb and
  3326. binutils.
  3327. https://toolchains.bootlin.com/
  3328. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SH_SH4AEB_MUSL_STABLE
  3329. bool "sh-sh4aeb musl stable 2020.08-1"
  3330. depends on BR2_sh
  3331. depends on BR2_sh4aeb
  3332. depends on BR2_USE_MMU
  3333. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3334. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3335. select BR2_INSTALL_LIBSTDCPP
  3336. select BR2_TOOLCHAIN_HAS_FORTRAN
  3337. select BR2_TOOLCHAIN_HAS_SSP
  3338. select BR2_TOOLCHAIN_HAS_THREADS
  3339. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3340. select BR2_TOOLCHAIN_HAS_THREADS
  3341. select BR2_TOOLCHAIN_HAS_THREADS
  3342. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3343. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3344. help
  3345. Bootlin toolchain for the sh-sh4aeb architecture, using the
  3346. musl C library. This is a stable version, which means it is
  3347. using stable and proven versions of gcc, gdb and binutils.
  3348. https://toolchains.bootlin.com/
  3349. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARC64_GLIBC_BLEEDING_EDGE
  3350. bool "sparc64 glibc bleeding-edge 2020.08-1"
  3351. depends on BR2_sparc64
  3352. depends on BR2_sparc_v9
  3353. depends on BR2_USE_MMU
  3354. depends on !BR2_STATIC_LIBS
  3355. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3356. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3357. select BR2_INSTALL_LIBSTDCPP
  3358. select BR2_TOOLCHAIN_HAS_FORTRAN
  3359. select BR2_TOOLCHAIN_HAS_SSP
  3360. select BR2_TOOLCHAIN_HAS_THREADS
  3361. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3362. select BR2_TOOLCHAIN_HAS_THREADS
  3363. select BR2_TOOLCHAIN_HAS_THREADS
  3364. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3365. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3366. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3367. help
  3368. Bootlin toolchain for the sparc64 architecture, using the
  3369. glibc C library. This is a bleeding-edge version, which
  3370. means it is using the latest versions of gcc, gdb and
  3371. binutils.
  3372. https://toolchains.bootlin.com/
  3373. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARC64_GLIBC_STABLE
  3374. bool "sparc64 glibc stable 2020.08-1"
  3375. depends on BR2_sparc64
  3376. depends on BR2_sparc_v9
  3377. depends on BR2_USE_MMU
  3378. depends on !BR2_STATIC_LIBS
  3379. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3380. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3381. select BR2_INSTALL_LIBSTDCPP
  3382. select BR2_TOOLCHAIN_HAS_FORTRAN
  3383. select BR2_TOOLCHAIN_HAS_SSP
  3384. select BR2_TOOLCHAIN_HAS_THREADS
  3385. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3386. select BR2_TOOLCHAIN_HAS_THREADS
  3387. select BR2_TOOLCHAIN_HAS_THREADS
  3388. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3389. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3390. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3391. help
  3392. Bootlin toolchain for the sparc64 architecture, using the
  3393. glibc C library. This is a stable version, which means it
  3394. is using stable and proven versions of gcc, gdb and
  3395. binutils.
  3396. https://toolchains.bootlin.com/
  3397. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARCV8_UCLIBC_BLEEDING_EDGE
  3398. bool "sparcv8 uclibc bleeding-edge 2020.08-1"
  3399. depends on BR2_sparc
  3400. depends on BR2_sparc_v8
  3401. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3402. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3403. select BR2_USE_WCHAR
  3404. select BR2_ENABLE_LOCALE
  3405. select BR2_INSTALL_LIBSTDCPP
  3406. select BR2_TOOLCHAIN_HAS_FORTRAN
  3407. select BR2_TOOLCHAIN_HAS_THREADS
  3408. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3409. select BR2_TOOLCHAIN_HAS_THREADS
  3410. select BR2_TOOLCHAIN_HAS_THREADS
  3411. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3412. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3413. help
  3414. Bootlin toolchain for the sparcv8 architecture, using the
  3415. uclibc C library. This is a bleeding-edge version, which
  3416. means it is using the latest versions of gcc, gdb and
  3417. binutils.
  3418. https://toolchains.bootlin.com/
  3419. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_SPARCV8_UCLIBC_STABLE
  3420. bool "sparcv8 uclibc stable 2020.08-1"
  3421. depends on BR2_sparc
  3422. depends on BR2_sparc_v8
  3423. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3424. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3425. select BR2_USE_WCHAR
  3426. select BR2_ENABLE_LOCALE
  3427. select BR2_INSTALL_LIBSTDCPP
  3428. select BR2_TOOLCHAIN_HAS_FORTRAN
  3429. select BR2_TOOLCHAIN_HAS_THREADS
  3430. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3431. select BR2_TOOLCHAIN_HAS_THREADS
  3432. select BR2_TOOLCHAIN_HAS_THREADS
  3433. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3434. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3435. help
  3436. Bootlin toolchain for the sparcv8 architecture, using the
  3437. uclibc C library. This is a stable version, which means it
  3438. is using stable and proven versions of gcc, gdb and
  3439. binutils.
  3440. https://toolchains.bootlin.com/
  3441. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_GLIBC_BLEEDING_EDGE
  3442. bool "x86-64-core-i7 glibc bleeding-edge 2020.08-1"
  3443. depends on BR2_x86_64
  3444. depends on BR2_X86_CPU_HAS_MMX
  3445. depends on BR2_X86_CPU_HAS_SSE
  3446. depends on BR2_X86_CPU_HAS_SSE2
  3447. depends on BR2_X86_CPU_HAS_SSE3
  3448. depends on BR2_X86_CPU_HAS_SSSE3
  3449. depends on BR2_X86_CPU_HAS_SSE4
  3450. depends on BR2_X86_CPU_HAS_SSE42
  3451. depends on BR2_USE_MMU
  3452. depends on !BR2_STATIC_LIBS
  3453. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3454. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3455. select BR2_INSTALL_LIBSTDCPP
  3456. select BR2_TOOLCHAIN_HAS_FORTRAN
  3457. select BR2_TOOLCHAIN_HAS_SSP
  3458. select BR2_TOOLCHAIN_HAS_THREADS
  3459. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3460. select BR2_TOOLCHAIN_HAS_THREADS
  3461. select BR2_TOOLCHAIN_HAS_THREADS
  3462. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3463. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3464. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3465. help
  3466. Bootlin toolchain for the x86-64-core-i7 architecture,
  3467. using the glibc C library. This is a bleeding-edge version,
  3468. which means it is using the latest versions of gcc, gdb and
  3469. binutils.
  3470. https://toolchains.bootlin.com/
  3471. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_GLIBC_STABLE
  3472. bool "x86-64-core-i7 glibc stable 2020.08-1"
  3473. depends on BR2_x86_64
  3474. depends on BR2_X86_CPU_HAS_MMX
  3475. depends on BR2_X86_CPU_HAS_SSE
  3476. depends on BR2_X86_CPU_HAS_SSE2
  3477. depends on BR2_X86_CPU_HAS_SSE3
  3478. depends on BR2_X86_CPU_HAS_SSSE3
  3479. depends on BR2_X86_CPU_HAS_SSE4
  3480. depends on BR2_X86_CPU_HAS_SSE42
  3481. depends on BR2_USE_MMU
  3482. depends on !BR2_STATIC_LIBS
  3483. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3484. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3485. select BR2_INSTALL_LIBSTDCPP
  3486. select BR2_TOOLCHAIN_HAS_FORTRAN
  3487. select BR2_TOOLCHAIN_HAS_SSP
  3488. select BR2_TOOLCHAIN_HAS_THREADS
  3489. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3490. select BR2_TOOLCHAIN_HAS_THREADS
  3491. select BR2_TOOLCHAIN_HAS_THREADS
  3492. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3493. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3494. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3495. help
  3496. Bootlin toolchain for the x86-64-core-i7 architecture,
  3497. using the glibc C library. This is a stable version, which
  3498. means it is using stable and proven versions of gcc, gdb
  3499. and binutils.
  3500. https://toolchains.bootlin.com/
  3501. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_MUSL_BLEEDING_EDGE
  3502. bool "x86-64-core-i7 musl bleeding-edge 2020.08-1"
  3503. depends on BR2_x86_64
  3504. depends on BR2_X86_CPU_HAS_MMX
  3505. depends on BR2_X86_CPU_HAS_SSE
  3506. depends on BR2_X86_CPU_HAS_SSE2
  3507. depends on BR2_X86_CPU_HAS_SSE3
  3508. depends on BR2_X86_CPU_HAS_SSSE3
  3509. depends on BR2_X86_CPU_HAS_SSE4
  3510. depends on BR2_X86_CPU_HAS_SSE42
  3511. depends on BR2_USE_MMU
  3512. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3513. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3514. select BR2_INSTALL_LIBSTDCPP
  3515. select BR2_TOOLCHAIN_HAS_FORTRAN
  3516. select BR2_TOOLCHAIN_HAS_SSP
  3517. select BR2_TOOLCHAIN_HAS_THREADS
  3518. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3519. select BR2_TOOLCHAIN_HAS_THREADS
  3520. select BR2_TOOLCHAIN_HAS_THREADS
  3521. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3522. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3523. help
  3524. Bootlin toolchain for the x86-64-core-i7 architecture,
  3525. using the musl C library. This is a bleeding-edge version,
  3526. which means it is using the latest versions of gcc, gdb and
  3527. binutils.
  3528. https://toolchains.bootlin.com/
  3529. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_MUSL_STABLE
  3530. bool "x86-64-core-i7 musl stable 2020.08-1"
  3531. depends on BR2_x86_64
  3532. depends on BR2_X86_CPU_HAS_MMX
  3533. depends on BR2_X86_CPU_HAS_SSE
  3534. depends on BR2_X86_CPU_HAS_SSE2
  3535. depends on BR2_X86_CPU_HAS_SSE3
  3536. depends on BR2_X86_CPU_HAS_SSSE3
  3537. depends on BR2_X86_CPU_HAS_SSE4
  3538. depends on BR2_X86_CPU_HAS_SSE42
  3539. depends on BR2_USE_MMU
  3540. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3541. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3542. select BR2_INSTALL_LIBSTDCPP
  3543. select BR2_TOOLCHAIN_HAS_FORTRAN
  3544. select BR2_TOOLCHAIN_HAS_SSP
  3545. select BR2_TOOLCHAIN_HAS_THREADS
  3546. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3547. select BR2_TOOLCHAIN_HAS_THREADS
  3548. select BR2_TOOLCHAIN_HAS_THREADS
  3549. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3550. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3551. help
  3552. Bootlin toolchain for the x86-64-core-i7 architecture,
  3553. using the musl C library. This is a stable version, which
  3554. means it is using stable and proven versions of gcc, gdb
  3555. and binutils.
  3556. https://toolchains.bootlin.com/
  3557. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_UCLIBC_BLEEDING_EDGE
  3558. bool "x86-64-core-i7 uclibc bleeding-edge 2020.08-1"
  3559. depends on BR2_x86_64
  3560. depends on BR2_X86_CPU_HAS_MMX
  3561. depends on BR2_X86_CPU_HAS_SSE
  3562. depends on BR2_X86_CPU_HAS_SSE2
  3563. depends on BR2_X86_CPU_HAS_SSE3
  3564. depends on BR2_X86_CPU_HAS_SSSE3
  3565. depends on BR2_X86_CPU_HAS_SSE4
  3566. depends on BR2_X86_CPU_HAS_SSE42
  3567. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3568. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3569. select BR2_USE_WCHAR
  3570. select BR2_ENABLE_LOCALE
  3571. select BR2_INSTALL_LIBSTDCPP
  3572. select BR2_TOOLCHAIN_HAS_FORTRAN
  3573. select BR2_TOOLCHAIN_HAS_THREADS
  3574. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3575. select BR2_TOOLCHAIN_HAS_THREADS
  3576. select BR2_TOOLCHAIN_HAS_THREADS
  3577. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3578. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3579. help
  3580. Bootlin toolchain for the x86-64-core-i7 architecture,
  3581. using the uclibc C library. This is a bleeding-edge
  3582. version, which means it is using the latest versions of
  3583. gcc, gdb and binutils.
  3584. https://toolchains.bootlin.com/
  3585. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_64_CORE_I7_UCLIBC_STABLE
  3586. bool "x86-64-core-i7 uclibc stable 2020.08-1"
  3587. depends on BR2_x86_64
  3588. depends on BR2_X86_CPU_HAS_MMX
  3589. depends on BR2_X86_CPU_HAS_SSE
  3590. depends on BR2_X86_CPU_HAS_SSE2
  3591. depends on BR2_X86_CPU_HAS_SSE3
  3592. depends on BR2_X86_CPU_HAS_SSSE3
  3593. depends on BR2_X86_CPU_HAS_SSE4
  3594. depends on BR2_X86_CPU_HAS_SSE42
  3595. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3596. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3597. select BR2_USE_WCHAR
  3598. select BR2_ENABLE_LOCALE
  3599. select BR2_INSTALL_LIBSTDCPP
  3600. select BR2_TOOLCHAIN_HAS_FORTRAN
  3601. select BR2_TOOLCHAIN_HAS_THREADS
  3602. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3603. select BR2_TOOLCHAIN_HAS_THREADS
  3604. select BR2_TOOLCHAIN_HAS_THREADS
  3605. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3606. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3607. help
  3608. Bootlin toolchain for the x86-64-core-i7 architecture,
  3609. using the uclibc C library. This is a stable version, which
  3610. means it is using stable and proven versions of gcc, gdb
  3611. and binutils.
  3612. https://toolchains.bootlin.com/
  3613. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_GLIBC_BLEEDING_EDGE
  3614. bool "x86-core2 glibc bleeding-edge 2020.08-1"
  3615. depends on BR2_i386
  3616. depends on BR2_X86_CPU_HAS_MMX
  3617. depends on BR2_X86_CPU_HAS_SSE
  3618. depends on BR2_X86_CPU_HAS_SSE2
  3619. depends on BR2_X86_CPU_HAS_SSE3
  3620. depends on BR2_X86_CPU_HAS_SSSE3
  3621. depends on BR2_USE_MMU
  3622. depends on !BR2_STATIC_LIBS
  3623. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3624. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3625. select BR2_INSTALL_LIBSTDCPP
  3626. select BR2_TOOLCHAIN_HAS_FORTRAN
  3627. select BR2_TOOLCHAIN_HAS_SSP
  3628. select BR2_TOOLCHAIN_HAS_THREADS
  3629. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3630. select BR2_TOOLCHAIN_HAS_THREADS
  3631. select BR2_TOOLCHAIN_HAS_THREADS
  3632. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3633. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3634. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3635. help
  3636. Bootlin toolchain for the x86-core2 architecture, using the
  3637. glibc C library. This is a bleeding-edge version, which
  3638. means it is using the latest versions of gcc, gdb and
  3639. binutils.
  3640. https://toolchains.bootlin.com/
  3641. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_GLIBC_STABLE
  3642. bool "x86-core2 glibc stable 2020.08-1"
  3643. depends on BR2_i386
  3644. depends on BR2_X86_CPU_HAS_MMX
  3645. depends on BR2_X86_CPU_HAS_SSE
  3646. depends on BR2_X86_CPU_HAS_SSE2
  3647. depends on BR2_X86_CPU_HAS_SSE3
  3648. depends on BR2_X86_CPU_HAS_SSSE3
  3649. depends on BR2_USE_MMU
  3650. depends on !BR2_STATIC_LIBS
  3651. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3652. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3653. select BR2_INSTALL_LIBSTDCPP
  3654. select BR2_TOOLCHAIN_HAS_FORTRAN
  3655. select BR2_TOOLCHAIN_HAS_SSP
  3656. select BR2_TOOLCHAIN_HAS_THREADS
  3657. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3658. select BR2_TOOLCHAIN_HAS_THREADS
  3659. select BR2_TOOLCHAIN_HAS_THREADS
  3660. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3661. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3662. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3663. help
  3664. Bootlin toolchain for the x86-core2 architecture, using the
  3665. glibc C library. This is a stable version, which means it
  3666. is using stable and proven versions of gcc, gdb and
  3667. binutils.
  3668. https://toolchains.bootlin.com/
  3669. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_MUSL_BLEEDING_EDGE
  3670. bool "x86-core2 musl bleeding-edge 2020.08-1"
  3671. depends on BR2_i386
  3672. depends on BR2_X86_CPU_HAS_MMX
  3673. depends on BR2_X86_CPU_HAS_SSE
  3674. depends on BR2_X86_CPU_HAS_SSE2
  3675. depends on BR2_X86_CPU_HAS_SSE3
  3676. depends on BR2_X86_CPU_HAS_SSSE3
  3677. depends on BR2_USE_MMU
  3678. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3679. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3680. select BR2_INSTALL_LIBSTDCPP
  3681. select BR2_TOOLCHAIN_HAS_FORTRAN
  3682. select BR2_TOOLCHAIN_HAS_THREADS
  3683. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3684. select BR2_TOOLCHAIN_HAS_THREADS
  3685. select BR2_TOOLCHAIN_HAS_THREADS
  3686. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3687. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3688. help
  3689. Bootlin toolchain for the x86-core2 architecture, using the
  3690. musl C library. This is a bleeding-edge version, which
  3691. means it is using the latest versions of gcc, gdb and
  3692. binutils.
  3693. https://toolchains.bootlin.com/
  3694. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_MUSL_STABLE
  3695. bool "x86-core2 musl stable 2020.08-1"
  3696. depends on BR2_i386
  3697. depends on BR2_X86_CPU_HAS_MMX
  3698. depends on BR2_X86_CPU_HAS_SSE
  3699. depends on BR2_X86_CPU_HAS_SSE2
  3700. depends on BR2_X86_CPU_HAS_SSE3
  3701. depends on BR2_X86_CPU_HAS_SSSE3
  3702. depends on BR2_USE_MMU
  3703. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3704. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3705. select BR2_INSTALL_LIBSTDCPP
  3706. select BR2_TOOLCHAIN_HAS_FORTRAN
  3707. select BR2_TOOLCHAIN_HAS_THREADS
  3708. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3709. select BR2_TOOLCHAIN_HAS_THREADS
  3710. select BR2_TOOLCHAIN_HAS_THREADS
  3711. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3712. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3713. help
  3714. Bootlin toolchain for the x86-core2 architecture, using the
  3715. musl C library. This is a stable version, which means it is
  3716. using stable and proven versions of gcc, gdb and binutils.
  3717. https://toolchains.bootlin.com/
  3718. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_UCLIBC_BLEEDING_EDGE
  3719. bool "x86-core2 uclibc bleeding-edge 2020.08-1"
  3720. depends on BR2_i386
  3721. depends on BR2_X86_CPU_HAS_MMX
  3722. depends on BR2_X86_CPU_HAS_SSE
  3723. depends on BR2_X86_CPU_HAS_SSE2
  3724. depends on BR2_X86_CPU_HAS_SSE3
  3725. depends on BR2_X86_CPU_HAS_SSSE3
  3726. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3727. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3728. select BR2_USE_WCHAR
  3729. select BR2_ENABLE_LOCALE
  3730. select BR2_INSTALL_LIBSTDCPP
  3731. select BR2_TOOLCHAIN_HAS_FORTRAN
  3732. select BR2_TOOLCHAIN_HAS_THREADS
  3733. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3734. select BR2_TOOLCHAIN_HAS_THREADS
  3735. select BR2_TOOLCHAIN_HAS_THREADS
  3736. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3737. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3738. help
  3739. Bootlin toolchain for the x86-core2 architecture, using the
  3740. uclibc C library. This is a bleeding-edge version, which
  3741. means it is using the latest versions of gcc, gdb and
  3742. binutils.
  3743. https://toolchains.bootlin.com/
  3744. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_CORE2_UCLIBC_STABLE
  3745. bool "x86-core2 uclibc stable 2020.08-1"
  3746. depends on BR2_i386
  3747. depends on BR2_X86_CPU_HAS_MMX
  3748. depends on BR2_X86_CPU_HAS_SSE
  3749. depends on BR2_X86_CPU_HAS_SSE2
  3750. depends on BR2_X86_CPU_HAS_SSE3
  3751. depends on BR2_X86_CPU_HAS_SSSE3
  3752. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3753. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3754. select BR2_USE_WCHAR
  3755. select BR2_ENABLE_LOCALE
  3756. select BR2_INSTALL_LIBSTDCPP
  3757. select BR2_TOOLCHAIN_HAS_FORTRAN
  3758. select BR2_TOOLCHAIN_HAS_THREADS
  3759. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3760. select BR2_TOOLCHAIN_HAS_THREADS
  3761. select BR2_TOOLCHAIN_HAS_THREADS
  3762. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3763. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3764. help
  3765. Bootlin toolchain for the x86-core2 architecture, using the
  3766. uclibc C library. This is a stable version, which means it
  3767. is using stable and proven versions of gcc, gdb and
  3768. binutils.
  3769. https://toolchains.bootlin.com/
  3770. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_GLIBC_BLEEDING_EDGE
  3771. bool "x86-i686 glibc bleeding-edge 2020.08-1"
  3772. depends on BR2_i386
  3773. depends on !BR2_x86_i486
  3774. depends on !BR2_x86_i586
  3775. depends on !BR2_x86_x1000
  3776. depends on BR2_USE_MMU
  3777. depends on !BR2_STATIC_LIBS
  3778. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3779. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3780. select BR2_INSTALL_LIBSTDCPP
  3781. select BR2_TOOLCHAIN_HAS_FORTRAN
  3782. select BR2_TOOLCHAIN_HAS_SSP
  3783. select BR2_TOOLCHAIN_HAS_THREADS
  3784. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3785. select BR2_TOOLCHAIN_HAS_THREADS
  3786. select BR2_TOOLCHAIN_HAS_THREADS
  3787. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3788. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3789. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3790. help
  3791. Bootlin toolchain for the x86-i686 architecture, using the
  3792. glibc C library. This is a bleeding-edge version, which
  3793. means it is using the latest versions of gcc, gdb and
  3794. binutils.
  3795. https://toolchains.bootlin.com/
  3796. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_GLIBC_STABLE
  3797. bool "x86-i686 glibc stable 2020.08-1"
  3798. depends on BR2_i386
  3799. depends on !BR2_x86_i486
  3800. depends on !BR2_x86_i586
  3801. depends on !BR2_x86_x1000
  3802. depends on BR2_USE_MMU
  3803. depends on !BR2_STATIC_LIBS
  3804. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3805. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3806. select BR2_INSTALL_LIBSTDCPP
  3807. select BR2_TOOLCHAIN_HAS_FORTRAN
  3808. select BR2_TOOLCHAIN_HAS_SSP
  3809. select BR2_TOOLCHAIN_HAS_THREADS
  3810. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3811. select BR2_TOOLCHAIN_HAS_THREADS
  3812. select BR2_TOOLCHAIN_HAS_THREADS
  3813. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3814. select BR2_TOOLCHAIN_EXTERNAL_GLIBC
  3815. select BR2_TOOLCHAIN_HAS_NATIVE_RPC
  3816. help
  3817. Bootlin toolchain for the x86-i686 architecture, using the
  3818. glibc C library. This is a stable version, which means it
  3819. is using stable and proven versions of gcc, gdb and
  3820. binutils.
  3821. https://toolchains.bootlin.com/
  3822. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_MUSL_BLEEDING_EDGE
  3823. bool "x86-i686 musl bleeding-edge 2020.08-1"
  3824. depends on BR2_i386
  3825. depends on !BR2_x86_i486
  3826. depends on !BR2_x86_i586
  3827. depends on !BR2_x86_x1000
  3828. depends on BR2_USE_MMU
  3829. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3830. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3831. select BR2_INSTALL_LIBSTDCPP
  3832. select BR2_TOOLCHAIN_HAS_FORTRAN
  3833. select BR2_TOOLCHAIN_HAS_THREADS
  3834. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3835. select BR2_TOOLCHAIN_HAS_THREADS
  3836. select BR2_TOOLCHAIN_HAS_THREADS
  3837. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3838. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3839. help
  3840. Bootlin toolchain for the x86-i686 architecture, using the
  3841. musl C library. This is a bleeding-edge version, which
  3842. means it is using the latest versions of gcc, gdb and
  3843. binutils.
  3844. https://toolchains.bootlin.com/
  3845. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_MUSL_STABLE
  3846. bool "x86-i686 musl stable 2020.08-1"
  3847. depends on BR2_i386
  3848. depends on !BR2_x86_i486
  3849. depends on !BR2_x86_i586
  3850. depends on !BR2_x86_x1000
  3851. depends on BR2_USE_MMU
  3852. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3853. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3854. select BR2_INSTALL_LIBSTDCPP
  3855. select BR2_TOOLCHAIN_HAS_FORTRAN
  3856. select BR2_TOOLCHAIN_HAS_THREADS
  3857. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3858. select BR2_TOOLCHAIN_HAS_THREADS
  3859. select BR2_TOOLCHAIN_HAS_THREADS
  3860. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3861. select BR2_TOOLCHAIN_EXTERNAL_MUSL
  3862. help
  3863. Bootlin toolchain for the x86-i686 architecture, using the
  3864. musl C library. This is a stable version, which means it is
  3865. using stable and proven versions of gcc, gdb and binutils.
  3866. https://toolchains.bootlin.com/
  3867. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_UCLIBC_BLEEDING_EDGE
  3868. bool "x86-i686 uclibc bleeding-edge 2020.08-1"
  3869. depends on BR2_i386
  3870. depends on !BR2_x86_i486
  3871. depends on !BR2_x86_i586
  3872. depends on !BR2_x86_x1000
  3873. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3874. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3875. select BR2_USE_WCHAR
  3876. select BR2_ENABLE_LOCALE
  3877. select BR2_INSTALL_LIBSTDCPP
  3878. select BR2_TOOLCHAIN_HAS_FORTRAN
  3879. select BR2_TOOLCHAIN_HAS_THREADS
  3880. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3881. select BR2_TOOLCHAIN_HAS_THREADS
  3882. select BR2_TOOLCHAIN_HAS_THREADS
  3883. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3884. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3885. help
  3886. Bootlin toolchain for the x86-i686 architecture, using the
  3887. uclibc C library. This is a bleeding-edge version, which
  3888. means it is using the latest versions of gcc, gdb and
  3889. binutils.
  3890. https://toolchains.bootlin.com/
  3891. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_X86_I686_UCLIBC_STABLE
  3892. bool "x86-i686 uclibc stable 2020.08-1"
  3893. depends on BR2_i386
  3894. depends on !BR2_x86_i486
  3895. depends on !BR2_x86_i586
  3896. depends on !BR2_x86_x1000
  3897. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3898. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3899. select BR2_USE_WCHAR
  3900. select BR2_ENABLE_LOCALE
  3901. select BR2_INSTALL_LIBSTDCPP
  3902. select BR2_TOOLCHAIN_HAS_FORTRAN
  3903. select BR2_TOOLCHAIN_HAS_THREADS
  3904. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3905. select BR2_TOOLCHAIN_HAS_THREADS
  3906. select BR2_TOOLCHAIN_HAS_THREADS
  3907. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3908. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3909. help
  3910. Bootlin toolchain for the x86-i686 architecture, using the
  3911. uclibc C library. This is a stable version, which means it
  3912. is using stable and proven versions of gcc, gdb and
  3913. binutils.
  3914. https://toolchains.bootlin.com/
  3915. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_XTENSA_LX60_UCLIBC_BLEEDING_EDGE
  3916. bool "xtensa-lx60 uclibc bleeding-edge 2020.08-1"
  3917. depends on BR2_xtensa
  3918. depends on BR2_xtensa_fsf
  3919. select BR2_TOOLCHAIN_GCC_AT_LEAST_10
  3920. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_4
  3921. select BR2_USE_WCHAR
  3922. select BR2_ENABLE_LOCALE
  3923. select BR2_INSTALL_LIBSTDCPP
  3924. select BR2_TOOLCHAIN_HAS_FORTRAN
  3925. select BR2_TOOLCHAIN_HAS_THREADS
  3926. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3927. select BR2_TOOLCHAIN_HAS_THREADS
  3928. select BR2_TOOLCHAIN_HAS_THREADS
  3929. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3930. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3931. help
  3932. Bootlin toolchain for the xtensa-lx60 architecture, using
  3933. the uclibc C library. This is a bleeding-edge version,
  3934. which means it is using the latest versions of gcc, gdb and
  3935. binutils.
  3936. https://toolchains.bootlin.com/
  3937. config BR2_TOOLCHAIN_EXTERNAL_BOOTLIN_XTENSA_LX60_UCLIBC_STABLE
  3938. bool "xtensa-lx60 uclibc stable 2020.08-1"
  3939. depends on BR2_xtensa
  3940. depends on BR2_xtensa_fsf
  3941. select BR2_TOOLCHAIN_GCC_AT_LEAST_9
  3942. select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_9
  3943. select BR2_USE_WCHAR
  3944. select BR2_ENABLE_LOCALE
  3945. select BR2_INSTALL_LIBSTDCPP
  3946. select BR2_TOOLCHAIN_HAS_FORTRAN
  3947. select BR2_TOOLCHAIN_HAS_THREADS
  3948. select BR2_TOOLCHAIN_HAS_THREADS_DEBUG
  3949. select BR2_TOOLCHAIN_HAS_THREADS
  3950. select BR2_TOOLCHAIN_HAS_THREADS
  3951. select BR2_TOOLCHAIN_HAS_THREADS_NPTL
  3952. select BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  3953. help
  3954. Bootlin toolchain for the xtensa-lx60 architecture, using
  3955. the uclibc C library. This is a stable version, which means
  3956. it is using stable and proven versions of gcc, gdb and
  3957. binutils.
  3958. https://toolchains.bootlin.com/
  3959. endchoice
  3960. endif