Config.in 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. mainmenu "uClibc $VERSION C Library Configuration"
  6. config DESIRED_TARGET_ARCH
  7. string
  8. option env="ARCH"
  9. config VERSION
  10. string
  11. option env="VERSION"
  12. choice
  13. prompt "Target Architecture"
  14. default TARGET_alpha if DESIRED_TARGET_ARCH = "alpha"
  15. default TARGET_arc if DESIRED_TARGET_ARCH = "arc"
  16. default TARGET_arm if DESIRED_TARGET_ARCH = "arm"
  17. default TARGET_avr32 if DESIRED_TARGET_ARCH = "avr32"
  18. default TARGET_bfin if DESIRED_TARGET_ARCH = "bfin"
  19. default TARGET_cris if DESIRED_TARGET_ARCH = "cris"
  20. default TARGET_e1 if DESIRED_TARGET_ARCH = "e1"
  21. default TARGET_frv if DESIRED_TARGET_ARCH = "frv"
  22. default TARGET_h8300 if DESIRED_TARGET_ARCH = "h8300"
  23. default TARGET_hppa if DESIRED_TARGET_ARCH = "hppa"
  24. default TARGET_i386 if DESIRED_TARGET_ARCH = "i386"
  25. default TARGET_i960 if DESIRED_TARGET_ARCH = "i960"
  26. default TARGET_ia64 if DESIRED_TARGET_ARCH = "ia64"
  27. default TARGET_m68k if DESIRED_TARGET_ARCH = "m68k"
  28. default TARGET_metag if DESIRED_TARGET_ARCH = "metag"
  29. default TARGET_microblaze if DESIRED_TARGET_ARCH = "microblaze"
  30. default TARGET_mips if DESIRED_TARGET_ARCH = "mips"
  31. default TARGET_nios if DESIRED_TARGET_ARCH = "nios"
  32. default TARGET_nios2 if DESIRED_TARGET_ARCH = "nios2"
  33. default TARGET_powerpc if DESIRED_TARGET_ARCH = "powerpc"
  34. default TARGET_sh if DESIRED_TARGET_ARCH = "sh"
  35. default TARGET_sh64 if DESIRED_TARGET_ARCH = "sh64"
  36. default TARGET_sparc if DESIRED_TARGET_ARCH = "sparc"
  37. default TARGET_v850 if DESIRED_TARGET_ARCH = "v850"
  38. default TARGET_vax if DESIRED_TARGET_ARCH = "vax"
  39. default TARGET_x86_64 if DESIRED_TARGET_ARCH = "x86_64"
  40. default TARGET_xtensa if DESIRED_TARGET_ARCH = "xtensa"
  41. help
  42. The architecture of your target.
  43. #config TARGET_alpha
  44. # bool "alpha"
  45. config TARGET_arc
  46. bool "arc"
  47. config TARGET_arm
  48. bool "arm"
  49. config TARGET_avr32
  50. bool "avr32"
  51. config TARGET_bfin
  52. bool "bfin"
  53. # someone could sync this tree:
  54. # http://linux-c6x.org/git/?p=uClibc.git;a=summary
  55. #config TARGET_c6x
  56. # bool "c6x"
  57. config TARGET_cris
  58. bool "cris"
  59. #config TARGET_e1
  60. # bool "e1 (BROKEN)"
  61. #config TARGET_frv
  62. # bool "frv (BROKEN)"
  63. #config TARGET_h8300
  64. # bool "h8300 (BROKEN)"
  65. #config TARGET_hppa
  66. # bool "hppa"
  67. config TARGET_i386
  68. bool "i386"
  69. #config TARGET_i960
  70. # bool "i960 (BROKEN)"
  71. #config TARGET_ia64
  72. # bool "ia64"
  73. config TARGET_m68k
  74. bool "m68k"
  75. #config TARGET_metag
  76. # bool "metag"
  77. #config TARGET_microblaze
  78. # bool "microblaze"
  79. config TARGET_mips
  80. bool "mips"
  81. #config TARGET_nios
  82. # bool "nios"
  83. #config TARGET_nios2
  84. # bool "nios2"
  85. config TARGET_powerpc
  86. bool "powerpc"
  87. config TARGET_sh
  88. bool "superh"
  89. #config TARGET_sh64
  90. # bool "sh64"
  91. config TARGET_sparc
  92. bool "sparc"
  93. #config TARGET_v850
  94. # bool "v850 (BROKEN)"
  95. #config TARGET_vax
  96. # bool "vax"
  97. config TARGET_x86_64
  98. bool "x86_64"
  99. config TARGET_xtensa
  100. bool "xtensa"
  101. endchoice
  102. menu "Target Architecture Features and Options"
  103. if TARGET_alpha
  104. source "extra/Configs/Config.alpha"
  105. endif
  106. if TARGET_arm
  107. source "extra/Configs/Config.arm"
  108. endif
  109. if TARGET_avr32
  110. source "extra/Configs/Config.avr32"
  111. endif
  112. if TARGET_bfin
  113. source "extra/Configs/Config.bfin"
  114. endif
  115. if TARGET_cris
  116. source "extra/Configs/Config.cris"
  117. endif
  118. if TARGET_e1
  119. source "extra/Configs/Config.e1"
  120. endif
  121. if TARGET_frv
  122. source "extra/Configs/Config.frv"
  123. endif
  124. if TARGET_h8300
  125. source "extra/Configs/Config.h8300"
  126. endif
  127. if TARGET_hppa
  128. source "extra/Configs/Config.hppa"
  129. endif
  130. if TARGET_i386
  131. source "extra/Configs/Config.i386"
  132. endif
  133. if TARGET_i960
  134. source "extra/Configs/Config.i960"
  135. endif
  136. if TARGET_ia64
  137. source "extra/Configs/Config.ia64"
  138. endif
  139. if TARGET_m68k
  140. source "extra/Configs/Config.m68k"
  141. endif
  142. if TARGET_metag
  143. source "extra/Configs/Config.metag"
  144. endif
  145. if TARGET_nios
  146. source "extra/Configs/Config.nios"
  147. endif
  148. if TARGET_nios2
  149. source "extra/Configs/Config.nios2"
  150. endif
  151. if TARGET_microblaze
  152. source "extra/Configs/Config.microblaze"
  153. endif
  154. if TARGET_mips
  155. source "extra/Configs/Config.mips"
  156. endif
  157. if TARGET_powerpc
  158. source "extra/Configs/Config.powerpc"
  159. endif
  160. if TARGET_sh
  161. source "extra/Configs/Config.sh"
  162. endif
  163. if TARGET_sh64
  164. source "extra/Configs/Config.sh64"
  165. endif
  166. if TARGET_sparc
  167. source "extra/Configs/Config.sparc"
  168. endif
  169. if TARGET_v850
  170. source "extra/Configs/Config.v850"
  171. endif
  172. if TARGET_vax
  173. source "extra/Configs/Config.vax"
  174. endif
  175. if TARGET_x86_64
  176. source "extra/Configs/Config.x86_64"
  177. endif
  178. if TARGET_xtensa
  179. source "extra/Configs/Config.xtensa"
  180. endif
  181. if TARGET_c6x
  182. source "extra/Configs/Config.c6x"
  183. endif
  184. if TARGET_arc
  185. source "extra/Configs/Config.arc"
  186. endif
  187. config TARGET_SUBARCH
  188. string
  189. default "e500" if CONFIG_E500
  190. default "classic" if CONFIG_CLASSIC
  191. default "sh4" if CONFIG_SH4
  192. default "" if CONFIG_386
  193. default "i486" if CONFIG_486
  194. default "i586" if CONFIG_586
  195. default "i686" if CONFIG_686
  196. default ""
  197. source "extra/Configs/Config.in.arch"
  198. endmenu
  199. menu "General Library Settings"
  200. config HAVE_NO_PIC
  201. bool
  202. config DOPIC
  203. bool "Generate only Position Independent Code (PIC)"
  204. default y
  205. depends on !HAVE_NO_PIC
  206. help
  207. If you wish to build all of uClibc as PIC objects, then answer Y here.
  208. If you are unsure, then you should answer N.
  209. config ARCH_HAS_NO_SHARED
  210. bool
  211. config ARCH_HAS_NO_LDSO
  212. bool
  213. select ARCH_HAS_NO_SHARED
  214. config ARCH_HAS_UCONTEXT
  215. bool
  216. config HAVE_SHARED
  217. bool "Enable shared libraries"
  218. depends on !ARCH_HAS_NO_SHARED
  219. default y
  220. help
  221. If you wish to build uClibc with support for shared libraries then
  222. answer Y here. If you only want to build uClibc as a static library,
  223. then answer N.
  224. config FORCE_SHAREABLE_TEXT_SEGMENTS
  225. bool "Only load shared libraries which can share their text segment"
  226. depends on HAVE_SHARED
  227. select DOPIC
  228. help
  229. If you answer Y here, the uClibc native shared library loader will
  230. only load shared libraries, which do not need to modify any
  231. non-writable segments. These libraries haven't set the DT_TEXTREL
  232. tag in the dynamic section (==> objdump).
  233. All your libraries must be compiled with -fPIC or -fpic, and all
  234. assembler function must be written as position independent code (PIC).
  235. Enabling this option will make uClibc's shared library loader a
  236. little bit smaller and guarantee that no memory will be wasted by
  237. badly coded shared libraries.
  238. config LDSO_LDD_SUPPORT
  239. bool "Native 'ldd' support"
  240. depends on HAVE_SHARED
  241. default y
  242. help
  243. Enable all the code needed to support traditional ldd,
  244. which executes the shared library loader to resolve all dependencies
  245. and then provide a list of shared libraries that are required for an
  246. application to function. Disabling this option will make uClibc's
  247. shared library loader a little bit smaller.
  248. Most people will answer Y.
  249. config LDSO_CACHE_SUPPORT
  250. bool "Enable library loader cache (ld.so.conf)"
  251. depends on HAVE_SHARED
  252. default y
  253. help
  254. Enable this to make use of /etc/ld.so.conf, the shared library loader
  255. cache configuration file to support for non-standard library paths.
  256. After updating this file, it is necessary to run 'ldconfig' to update
  257. the /etc/ld.so.cache shared library loader cache file.
  258. config LDSO_PRELOAD_ENV_SUPPORT
  259. bool "Enable library loader LD_PRELOAD environment"
  260. depends on HAVE_SHARED
  261. default y
  262. help
  263. Enable this to make use of LD_PRELOAD environment variable.
  264. A whitespace-separated list of additional, user-specified, ELF shared
  265. libraries to be loaded before all others. This can be used to
  266. selectively override functions in other shared libraries. For
  267. set-user-ID/set-group-ID ELF binaries, only libraries in the standard
  268. search directories that are also set-user-ID will be loaded.
  269. config LDSO_PRELOAD_FILE_SUPPORT
  270. bool "Enable library loader preload file (ld.so.preload)"
  271. depends on HAVE_SHARED
  272. help
  273. Enable this to make use of /etc/ld.so.preload. This file contains a
  274. whitespace separated list of shared libraries to be loaded before
  275. the program.
  276. config LDSO_BASE_FILENAME
  277. string "Shared library loader naming prefix"
  278. depends on HAVE_SHARED && (LDSO_CACHE_SUPPORT || LDSO_PRELOAD_FILE_SUPPORT)
  279. default "ld.so"
  280. help
  281. If you wish to support both uClibc and glibc on the same system, it
  282. is necessary to set this to something other than "ld.so" to avoid
  283. conflicts with glibc, which also uses "ld.so". This prevents both
  284. libraries from using the same /etc/ld.so.* files. If you wish to
  285. support both uClibc and glibc on the same system then you should set
  286. this to "ld-uClibc.so".
  287. Most people will leave this set to the default of "ld.so".
  288. WARNING: Changing the default prefix could cause problems with
  289. binutils' ld !
  290. config LDSO_STANDALONE_SUPPORT
  291. bool "Dynamic linker stand-alone mode support"
  292. depends on HAVE_SHARED
  293. help
  294. The dynamic linker can be run either indirectly through running some
  295. dynamically linked program or library (in which case no command line
  296. options to the dynamic linker can be passed and, in the ELF case, the
  297. dynamic linker which is stored in the .interp section of the program
  298. is executed) or directly by running:
  299. /lib/ld-uClibc.so.* [OPTIONS] [PROGRAM [ARGUMENTS]]
  300. Stand-alone execution is a prerequisite for adding prelink
  301. capabilities to uClibc dynamic linker, as well useful for testing an
  302. updated version of the dynamic linker without breaking the system.
  303. config LDSO_PRELINK_SUPPORT
  304. bool "Dynamic linker prelink support"
  305. depends on HAVE_SHARED
  306. select LDSO_STANDALONE_SUPPORT
  307. help
  308. The dynamic linker can be used in stand-alone mode by the prelink tool
  309. for prelinking ELF shared libraries and binaries to speed up startup
  310. time. It also is able to load and handle prelinked libraries and
  311. binaries at runtime.
  312. config UCLIBC_STATIC_LDCONFIG
  313. bool "Link ldconfig statically"
  314. depends on HAVE_SHARED
  315. default y
  316. help
  317. Enable this option to statically link the ldconfig binary.
  318. Making ldconfig static can be beneficial if you have a library
  319. problem and need to use ldconfig to recover. Sometimes it is
  320. preferable to instead keep the size of the system down, in which
  321. case you should disable this option.
  322. config LDSO_RUNPATH
  323. bool "Enable ELF RUNPATH tag support"
  324. depends on HAVE_SHARED
  325. default y if LDSO_CACHE_SUPPORT
  326. help
  327. ELF's may have dynamic RPATH/RUNPATH tags. These tags list paths
  328. which extend the library search paths. They are really only useful
  329. if a package installs libraries in non standard locations and
  330. ld.so.conf support is disabled.
  331. Usage of RUNPATH tags is not too common, so disabling this feature
  332. should be safe for most people.
  333. config LDSO_SAFE_RUNPATH
  334. bool "Allow only RUNPATH beginning with /"
  335. depends on LDSO_RUNPATH
  336. default y
  337. help
  338. Allow only absolute path in RPATH/RUNPATH.
  339. config LDSO_SEARCH_INTERP_PATH
  340. bool "Add ldso path to lib search path"
  341. depends on HAVE_SHARED
  342. default y
  343. help
  344. The ldso is told where it is being executed from and can use that
  345. path to find related core libraries. This is useful by default,
  346. but can be annoying in a mixed development environment.
  347. i.e. if the ldso is run from /foo/boo/ldso.so, it will start its
  348. library search with /foo/boo/
  349. If unsure, simply say Y here.
  350. config LDSO_LD_LIBRARY_PATH
  351. bool "Add LD_LIBRARY_PATH to lib search path"
  352. depends on HAVE_SHARED
  353. default y
  354. help
  355. On hardened system it could be useful to disable the use of
  356. LD_LIBRARY_PATH environment variable (a colon-separated list of
  357. directories in which to search for ELF libraries at execution-time).
  358. If unsure, simply say Y here.
  359. config LDSO_NO_CLEANUP
  360. bool "Disable automatic unloading of dynamically loaded shared objects"
  361. depends on HAVE_SHARED
  362. help
  363. If you need complete allocation traces when debugging memory leaks
  364. using Valgrind in a process that dynamically loads shared objects,
  365. then answer Y here. Unlike glibc, uClibc unloads all dynamically
  366. loaded shared objects when a process exits, which prevents Valgrind
  367. from correctly resolving the symbols from the unloaded shared objects.
  368. Unless you know you need this, you should answer N.
  369. config UCLIBC_CTOR_DTOR
  370. boolean
  371. default y
  372. help
  373. If you wish to build uClibc with support for global constructor
  374. (ctor) and global destructor (dtor) support, then answer Y here.
  375. When ctor/dtor support is enabled, binaries linked with uClibc must
  376. also be linked with crtbegin.o and crtend.o which are provided by gcc
  377. (the "*startfile:" and "*endfile:" settings in your gcc specs file
  378. may need to be adjusted to include these files). This support will
  379. also add a small amount of additional size to each binary compiled vs
  380. uClibc. If you will be using uClibc with C++, or if you need the gcc
  381. __attribute__((constructor)) and __attribute__((destructor)) to work,
  382. then you definitely want to answer Y here. If you don't need ctors
  383. or dtors and want your binaries to be as small as possible, then
  384. answer N.
  385. config LDSO_GNU_HASH_SUPPORT
  386. bool "Enable GNU hash style support"
  387. depends on HAVE_SHARED
  388. help
  389. Newest binutils support a new hash style named GNU-hash. The dynamic
  390. linker will use the new GNU-hash section (.gnu.hash) for symbol lookup
  391. if present into the ELF binaries, otherwise it will use the old SysV
  392. hash style (.hash). This ensures that it is completely backward
  393. compatible.
  394. Further, being the hash table implementation self-contained into each
  395. executable and shared libraries, objects with mixed hash style can
  396. peacefully coexist in the same process.
  397. If you want to use this new feature, answer Y
  398. choice
  399. prompt "Thread support"
  400. #default UCLIBC_HAS_THREADS_NATIVE if (TARGET_alpha || TARGET_arm || TARGET_i386 || TARGET_mips || TARGET_powerpc || TARGET_sh || TARGET_sh64)
  401. default HAS_NO_THREADS
  402. help
  403. If you want to compile uClibc with pthread support, then answer Y.
  404. This will increase the size of uClibc by adding a bunch of locking
  405. to critical data structures, and adding extra code to ensure that
  406. functions are properly reentrant.
  407. config HAS_NO_THREADS
  408. bool "none"
  409. help
  410. Disable thread support.
  411. config LINUXTHREADS_OLD
  412. bool "older (stable) version of linuxthreads"
  413. # linuxthreads and linuxthreads.old need nanosleep()
  414. select UCLIBC_HAS_REALTIME
  415. depends on !TARGET_arc && \
  416. !TARGET_arm && \
  417. !TARGET_i386 && \
  418. !TARGET_metag && \
  419. !TARGET_mips && \
  420. !TARGET_powerpc && \
  421. !TARGET_sh && \
  422. !TARGET_sparc && \
  423. !TARGET_x86_64 && \
  424. !TARGET_xtensa
  425. help
  426. There are two versions of linuxthreads. The older (stable) version
  427. has been in uClibc for quite a long time but hasn't seen too many
  428. updates other than bugfixes.
  429. config LINUXTHREADS_NEW
  430. bool "slightly newer version of linuxthreads"
  431. depends on ARCH_HAS_DEPRECATED_SYSCALLS
  432. depends on !TARGET_arc && \
  433. !TARGET_arm && \
  434. !TARGET_i386 && \
  435. !TARGET_metag && \
  436. !TARGET_mips && \
  437. !TARGET_powerpc && \
  438. !TARGET_sh && \
  439. !TARGET_sparc && \
  440. !TARGET_x86_64 && \
  441. !TARGET_xtensa
  442. help
  443. The new version has not been tested much, and lacks ports for arches
  444. which glibc does not support (like bfin/frv/etc...), but is based on
  445. the latest code from glibc, so it may be the only choice for the
  446. newer ports (like alpha/amd64/64bit arches and hppa).
  447. config UCLIBC_HAS_THREADS_NATIVE
  448. bool "Native POSIX Threading (NPTL)"
  449. select UCLIBC_HAS_TLS
  450. select UCLIBC_HAS_STDIO_FUTEXES
  451. select UCLIBC_HAS_REALTIME
  452. # i386 has no lowlevellock support (yet) as opposed to i486 onward
  453. depends on !CONFIG_386 && \
  454. !TARGET_alpha && \
  455. !TARGET_avr32 && \
  456. !TARGET_bfin && \
  457. !TARGET_c6x && \
  458. !TARGET_cris && \
  459. !TARGET_hppa && \
  460. !TARGET_ia64 && \
  461. !TARGET_m68k && \
  462. !TARGET_microblaze && \
  463. !TARGET_nios2 && \
  464. !TARGET_vax
  465. help
  466. If you want to compile uClibc with NPTL support, then answer Y.
  467. endchoice
  468. config UCLIBC_HAS_THREADS
  469. def_bool y if !HAS_NO_THREADS
  470. config UCLIBC_HAS_TLS
  471. bool "Thread-Local Storage"
  472. depends on UCLIBC_HAS_THREADS_NATIVE
  473. help
  474. If you want to enable TLS support then answer Y.
  475. This is fast an efficient way to store per-thread local data
  476. which is not on stack. It needs __thread support enabled in
  477. gcc.
  478. config PTHREADS_DEBUG_SUPPORT
  479. bool "Build pthreads debugging support"
  480. depends on UCLIBC_HAS_THREADS
  481. help
  482. Say Y here if you wish to be able to debug applications that use
  483. uClibc's pthreads library. By enabling this option, a library
  484. named libthread_db will be built. This library will be dlopen()'d
  485. by gdb and will allow gdb to debug the threads in your application.
  486. IMPORTANT NOTE! Because gdb must dlopen() the libthread_db library,
  487. you must compile gdb with uClibc in order for pthread debugging to
  488. work properly.
  489. If you are doing development and want to debug applications using
  490. uClibc's pthread library, answer Y. Otherwise, answer N.
  491. config UCLIBC_HAS_SYSLOG
  492. bool "Syslog support"
  493. default y
  494. depends on UCLIBC_HAS_NETWORK_SUPPORT
  495. select UCLIBC_HAS_SOCKET
  496. help
  497. Support sending messages to the system logger.
  498. This requires socket-support.
  499. config UCLIBC_HAS_LFS
  500. bool "Large File Support"
  501. default y
  502. help
  503. If you wish to build uClibc with support for accessing large files
  504. (i.e. files greater then 2 GiB) then answer Y. Do not enable this
  505. if you are using an older Linux kernel (2.0.x) that lacks large file
  506. support. Enabling this option will increase the size of uClibc.
  507. choice
  508. prompt "Malloc Implementation"
  509. default MALLOC if ! ARCH_USE_MMU
  510. default MALLOC_STANDARD if ARCH_USE_MMU
  511. config MALLOC
  512. bool "malloc"
  513. help
  514. "malloc" use mmap for all allocations and so works very well on
  515. MMU-less systems that do not support the brk() system call. It is
  516. pretty smart about reusing already allocated memory, and minimizing
  517. memory wastage.
  518. This is the default for uClinux MMU-less systems.
  519. config MALLOC_SIMPLE
  520. bool "malloc-simple"
  521. help
  522. "malloc-simple" is trivially simple and slow as molasses. It
  523. was written from scratch for uClibc, and is the simplest possible
  524. (and therefore smallest) malloc implementation.
  525. This uses only the mmap() system call to allocate and free memory,
  526. and does not use the brk() system call at all, making it a fine
  527. choice for MMU-less systems with very limited memory. It's 100%
  528. standards compliant, thread safe, very small, and releases freed
  529. memory back to the OS immediately rather than keeping it in the
  530. process's heap for reallocation. It is also VERY SLOW.
  531. config MALLOC_STANDARD
  532. bool "malloc-standard"
  533. depends on ARCH_USE_MMU
  534. help
  535. "malloc-standard" is derived from the public domain dlmalloc
  536. implementation by Doug Lea. It is quite fast, and is pretty smart
  537. about reusing already allocated memory, and minimizing memory
  538. wastage. This uses brk() for small allocations, while using mmap()
  539. for larger allocations. This is the default malloc implementation
  540. for uClibc.
  541. If unsure, answer "malloc-standard".
  542. endchoice
  543. config MALLOC_GLIBC_COMPAT
  544. bool "Malloc returns live pointer for malloc(0)"
  545. help
  546. The behavior of malloc(0) is listed as implementation-defined by
  547. SuSv3. Glibc returns a valid pointer to something, while uClibc
  548. normally returns NULL. I personally feel glibc's behavior is
  549. not particularly safe, and allows buggy applications to hide very
  550. serious problems.
  551. When this option is enabled, uClibc will act just like glibc, and
  552. return a live pointer when someone calls malloc(0). This pointer
  553. provides a malloc'ed area with a size of 1 byte. This feature is
  554. mostly useful when dealing with applications using autoconf's broken
  555. AC_FUNC_MALLOC macro (which redefines malloc as rpl_malloc if it
  556. does not detect glibc style returning-a-valid-pointer-for-malloc(0)
  557. behavior). Most people can safely answer N.
  558. config UCLIBC_HAS_OBSTACK
  559. bool "Obstack Support (gnu extension)"
  560. help
  561. When this option is enabled, uClibc will provide support for obstacks.
  562. An obstack is a structure in which memory can be dynamically allocated
  563. as a 'stack of objects'. Many programs need this GNU extention and
  564. you should say Y if you are using any. Otherwise, say N to save some
  565. space.
  566. config UCLIBC_DYNAMIC_ATEXIT
  567. bool "Dynamic atexit() Support"
  568. default y
  569. help
  570. When this option is enabled, uClibc will support an infinite number,
  571. of atexit() and on_exit() functions, limited only by your available
  572. memory. This can be important when uClibc is used with C++, since
  573. global destructors are implemented via atexit(), and it is quite
  574. possible to exceed the default number when this option is disabled.
  575. Enabling this option adds a few bytes, and more significantly makes
  576. atexit and on_exit depend on malloc, which can be bad when compiling
  577. static executables.
  578. Unless you use uClibc with C++, you should probably answer N.
  579. config COMPAT_ATEXIT
  580. bool "Old (visible) atexit Support"
  581. help
  582. Enable this option if you want to update from 0.9.28 to git/0.9.29,
  583. else you will be missing atexit() until you rebuild all apps.
  584. config UCLIBC_SUSV2_LEGACY
  585. bool "Enable SuSv2 LEGACY functions"
  586. help
  587. Enable this option if you want to have SuSv2 LEGACY functions
  588. Currently applies to:
  589. valloc
  590. WARNING! ABI incompatibility.
  591. config UCLIBC_SUSV3_LEGACY
  592. bool "Enable SuSv3 LEGACY functions"
  593. #vfork,
  594. # h_errno
  595. # gethostbyaddr
  596. # gethostbyname
  597. help
  598. Enable this option if you want to have SuSv3 LEGACY functions
  599. in the library, else they are replaced by SuSv3 proposed macros.
  600. Currently applies to:
  601. bcmp, bcopy, bzero, index, rindex, ftime,
  602. bsd_signal, (ecvt), (fcvt), gcvt, (getcontext),
  603. (getwd), (makecontext),
  604. mktemp, (pthread_attr_getstackaddr), (pthread_attr_setstackaddr),
  605. scalb, (setcontext), (swapcontext), ualarm, usleep,
  606. wcswcs.
  607. WARNING! ABI incompatibility.
  608. config UCLIBC_HAS_CONTEXT_FUNCS
  609. bool "Use obsolescent context control functions"
  610. depends on UCLIBC_SUSV3_LEGACY && ARCH_HAS_UCONTEXT
  611. help
  612. Add into library the SuSv3 obsolescent functions used for context
  613. control. The setcontext family allows the implementation in C of
  614. advanced control flow patterns such as iterators, fibers, and
  615. coroutines. They may be viewed as an advanced version of
  616. setjmp/longjmp; whereas the latter allows only a single non-local jump
  617. up the stack, setcontext allows the creation of multiple cooperative
  618. threads of control, each with its own stack.
  619. These functions are: setcontext, getcontext, makecontext, swapcontext.
  620. config UCLIBC_SUSV3_LEGACY_MACROS
  621. bool "Enable SuSv3 LEGACY macros"
  622. help
  623. Enable this option if you want to have SuSv3 LEGACY macros.
  624. Currently applies to bcopy/bzero/bcmp/index/rindex et al.
  625. WARNING! ABI incompatibility.
  626. config UCLIBC_SUSV4_LEGACY
  627. bool "Enable SuSv4 LEGACY or obsolescent functions"
  628. help
  629. Enable this option if you want to have SuSv4 LEGACY functions
  630. and macros in the library.
  631. Currently applies to:
  632. - XSI functions:
  633. _longjmp, _setjmp, _tolower, _toupper, ftw, getitimer,
  634. gettimeofday, isascii, pthread_getconcurrency,
  635. pthread_setconcurrency, setitimer, setpgrp, sighold,
  636. sigignore, sigpause, sigrelse, sigset, siginterrupt,
  637. tempnam, toascii, ulimit.
  638. - Base functions:
  639. asctime, asctime_r, ctime, ctime_r, gets, rand_r,
  640. tmpnam, utime.
  641. WARNING! ABI incompatibility.
  642. config UCLIBC_STRICT_HEADERS
  643. bool "Hide structures and constants for unsupported features"
  644. help
  645. Hide structures and constants in headers that should not be used,
  646. because the respective feature is disabled.
  647. WARNING! enabling this option requires to patch many faulty apps,
  648. since they make (wrongly) use of these structures/constants,
  649. although the feature was disabled.
  650. config UCLIBC_HAS_STUBS
  651. bool "Provide stubs for unavailable functionality"
  652. help
  653. With this option uClibc provides non-functional stubs for
  654. functions which are impossible to implement on the target
  655. architecture. Otherwise, such functions are simply omitted.
  656. config UCLIBC_HAS_SHADOW
  657. bool "Shadow Password Support"
  658. default y
  659. help
  660. Answer N if you do not need shadow password support.
  661. Most people will answer Y.
  662. config UCLIBC_HAS_PROGRAM_INVOCATION_NAME
  663. bool "Support for program_invocation_name"
  664. help
  665. Support for the GNU-specific program_invocation_name and
  666. program_invocation_short_name strings. Some GNU packages
  667. (like tar and coreutils) utilize these for extra useful
  668. output, but in general are not required.
  669. At startup, these external strings are automatically set
  670. up based on the value of ARGV[0].
  671. If unsure, just answer N.
  672. config UCLIBC_HAS___PROGNAME
  673. bool "Support for __progname"
  674. default y
  675. help
  676. Some packages (like openssh) like to peek into internal libc
  677. symbols to make their output a bit more user friendly.
  678. At startup, __progname is automatically set up based on the
  679. value of ARGV[0].
  680. If unsure, just answer N.
  681. config UCLIBC_HAS_PTY
  682. bool "Support for pseudo-terminals"
  683. default y
  684. help
  685. This enables support for pseudo-terminals (see man 4 pts
  686. and man 7 pty).
  687. If unsure, just answer Y.
  688. config ASSUME_DEVPTS
  689. bool "Assume that /dev/pts is a devpts or devfs file system"
  690. default y
  691. depends on UCLIBC_HAS_PTY
  692. help
  693. Enable this if /dev/pts is on a devpts or devfs filesystem. Both
  694. these filesystems automatically manage permissions on the /dev/pts
  695. devices. You may need to mount your devpts or devfs filesystem on
  696. /dev/pts for this to work.
  697. Most people should answer Y.
  698. config UNIX98PTY_ONLY
  699. bool "Support only Unix 98 PTYs"
  700. default y
  701. depends on UCLIBC_HAS_PTY
  702. help
  703. If you want to support only Unix 98 PTYs enable this. Some older
  704. applications may need this disabled and will thus use legacy BSD
  705. style PTY handling which is more complex and also bigger than
  706. Unix 98 PTY handling.
  707. For most current programs, you can generally answer Y.
  708. if UNIX98PTY_ONLY
  709. config UCLIBC_HAS_GETPT
  710. bool "Support getpt() (glibc-compat)"
  711. depends on UCLIBC_HAS_PTY
  712. help
  713. Some packages may need getpt().
  714. All of those are non-standard and can be considered
  715. GNU/libc compatibility.
  716. Either use posix_openpt() or just open /dev/ptmx yourself.
  717. If unsure, just say N.
  718. endif
  719. if !UNIX98PTY_ONLY
  720. # Have to use __libc_ptyname{1,2}[] and related bloat
  721. config UCLIBC_HAS_GETPT
  722. def_bool y
  723. endif
  724. config UCLIBC_HAS_LIBUTIL
  725. bool "Provide libutil library and functions"
  726. depends on UCLIBC_HAS_PTY
  727. help
  728. Provide a libutil library.
  729. This non-standard conforming library provides the following
  730. utility functions:
  731. forkpty(): combines openpty(), fork(2), and login_tty() to
  732. create a new process operating in a pseudo-terminal.
  733. login(): write utmp and wtmp entries
  734. login_tty(): prepares for a login on the tty fd by creating a
  735. new session, making fd the controlling terminal for
  736. the calling process, setting fd to be the standard
  737. input, output, and error streams of the current
  738. process, and closing fd.
  739. logout(): write utmp and wtmp entries
  740. logwtmp(): constructs a utmp structure and calls updwtmp() to
  741. append the structure to the utmp file.
  742. openpty(): finds an available pseudo-terminal and returns
  743. file descriptors for the master and slave
  744. This library adds about 3k-4k to your system.
  745. config UCLIBC_HAS_TM_EXTENSIONS
  746. bool "Support 'struct tm' timezone extension fields"
  747. default y
  748. help
  749. Enabling this option adds fields to 'struct tm' in time.h for
  750. tracking the number of seconds east of UTC, and an abbreviation for
  751. the current timezone. These fields are not specified by the SuSv3
  752. standard, but they are commonly used in both GNU and BSD application
  753. code.
  754. To strictly follow the SuSv3 standard, leave this disabled.
  755. Most people will probably want to answer Y.
  756. config UCLIBC_HAS_TZ_CACHING
  757. bool "Enable caching of the last valid timezone 'TZ' string"
  758. default y
  759. help
  760. Answer Y to enable caching of the last valid 'TZ' string describing
  761. the timezone setting. This allows a quick string compare to avoid
  762. repeated parsing of unchanged 'TZ' strings when tzset() is called.
  763. Most people will answer Y.
  764. config UCLIBC_HAS_TZ_FILE
  765. bool "Enable '/etc/TZ' file support to set a default timezone (uClibc-specific)"
  766. default y
  767. help
  768. Answer Y to enable the setting of a default timezone for uClibc.
  769. Ordinarily, uClibc gets the timezone information exclusively from the
  770. 'TZ' environment variable. In particular, there is no support for
  771. the zoneinfo directory tree or the /etc/timezone file used by glibc.
  772. With this option enabled, uClibc will use the value stored in the
  773. file '/etc/TZ' (default path) to obtain timezone information if the
  774. 'TZ' environment variable is missing or has an invalid value. The
  775. file consists of a single line (newline required) of text describing
  776. the timezone in the format specified for the TZ environment variable.
  777. Doing 'echo CST6CDT > /etc/TZ' is enough to create a valid file.
  778. See
  779. http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap08.html
  780. for details on valid settings of 'TZ'.
  781. Most people will answer Y.
  782. config UCLIBC_HAS_TZ_FILE_READ_MANY
  783. bool "Repeatedly read the '/etc/TZ' file"
  784. depends on UCLIBC_HAS_TZ_FILE
  785. default y
  786. help
  787. Answer Y to enable repeated reading of the '/etc/TZ' file even after
  788. a valid value has been read. This incurs the overhead of an
  789. open/read/close for each tzset() call (explicit or implied). However,
  790. setting this will allow applications to update their timezone
  791. information if the contents of the file change.
  792. Most people will answer Y.
  793. config UCLIBC_TZ_FILE_PATH
  794. string "Path to the 'TZ' file for setting the global timezone"
  795. depends on UCLIBC_HAS_TZ_FILE
  796. default "/etc/TZ"
  797. help
  798. This is the path to the 'TZ' file.
  799. Most people will use the default of '/etc/TZ'.
  800. config UCLIBC_FALLBACK_TO_ETC_LOCALTIME
  801. bool "Use /etc/localtime as a fallback"
  802. depends on UCLIBC_HAS_TZ_FILE
  803. default y
  804. help
  805. Answer Y to try to use /etc/localtime file.
  806. On glibc systems this file (if it is in TZif2 format)
  807. contains timezone string at the end.
  808. Most people will answer Y.
  809. endmenu
  810. menu "Advanced Library Settings"
  811. config UCLIBC_PWD_BUFFER_SIZE
  812. int "Buffer size for getpwnam() and friends"
  813. default 256
  814. range 12 1024
  815. help
  816. This sets the value of the buffer size for getpwnam() and friends.
  817. By default, this is 256. (For reference, glibc uses 1024).
  818. The value can be found using sysconf() with the _SC_GETPW_R_SIZE_MAX
  819. parameter.
  820. config UCLIBC_GRP_BUFFER_SIZE
  821. int "Buffer size for getgrnam() and friends"
  822. default 256
  823. range 12 1024
  824. help
  825. This sets the value of the buffer size for getgrnam() and friends.
  826. By default, this is 256. (For reference, glibc uses 1024).
  827. The value can be found using sysconf() with the _SC_GETGR_R_SIZE_MAX
  828. parameter.
  829. comment "Support various families of functions"
  830. config UCLIBC_LINUX_MODULE_26
  831. bool "Linux kernel module functions (2.6)"
  832. default y
  833. help
  834. delete_module, init_module
  835. are used in linux for loadable kernel modules.
  836. Say N if you do not use kernel modules.
  837. config UCLIBC_LINUX_MODULE_24
  838. bool "Linux kernel module functions (<2.6)"
  839. depends on !TARGET_bfin && !TARGET_c6x
  840. help
  841. create_module, query_module
  842. are used in linux (prior to 2.6) for loadable kernel modules.
  843. Say N if you do not use kernel modules, or you only support
  844. Linux 2.6+.
  845. config UCLIBC_LINUX_SPECIFIC
  846. bool "Linux specific functions"
  847. default y
  848. help
  849. accept4(), bdflush(),
  850. capget(), capset(), eventfd(), fallocate(),
  851. fstatfs(), inotify_*(), ioperm(), iopl(),
  852. madvise(), modify_ldt(), pipe2(), personality(),
  853. prctl()/arch_prctl(), pivot_root(), modify_ldt(),
  854. ppoll(), readahead(), reboot(), remap_file_pages(),
  855. sched_getaffinity(), sched_setaffinity(), sendfile(),
  856. setfsgid(), setfsuid(), setresgid(), setresuid(),
  857. splice(), vmsplice(), tee(), signalfd(), swapoff(), swapon(),
  858. sync_file_range(), _sysctl(), sysinfo(), timerfd_*(), vhangup(),
  859. umount(), umount2()
  860. config UCLIBC_HAS_GNU_ERROR
  861. bool "Support GNU extensions for error-reporting"
  862. default y
  863. help
  864. Support for the GNU-specific error(), error_at_line(),
  865. void (* error_print_progname)(), error_message_count
  866. functions and variables. Some GNU packages
  867. utilize these for extra useful output, but in general
  868. are not required.
  869. If unsure, just answer N.
  870. config UCLIBC_BSD_SPECIFIC
  871. bool "BSD specific functions"
  872. default y
  873. help
  874. mincore(), getdomainname(), setdomainname()
  875. If unsure, say N.
  876. config UCLIBC_HAS_BSD_ERR
  877. bool "BSD err functions"
  878. default y
  879. help
  880. These functions are non-standard BSD extensions.
  881. err(), errx(), warn(), warnx(), verr(), verrx(), vwarn(), vwarnx()
  882. If unsure, say N.
  883. config UCLIBC_HAS_OBSOLETE_BSD_SIGNAL
  884. bool "BSD obsolete signal functions"
  885. help
  886. These functions are provided as a compatibility interface for
  887. programs that make use of the historical System V signal API.
  888. This API is obsolete:
  889. new applications should use the POSIX signal API (sigaction(2),
  890. sigprocmask(2), etc.).
  891. Affected functions:
  892. sigset(), sighold(), sigrelse(), sigignore()
  893. If unsure, say N.
  894. config UCLIBC_HAS_OBSOLETE_SYSV_SIGNAL
  895. bool "SYSV obsolete signal functions"
  896. help
  897. Use of sysv_signal() should be avoided; use sigaction(2) instead.
  898. If unsure, say N.
  899. config UCLIBC_NTP_LEGACY
  900. bool "ntp_*() aliases"
  901. help
  902. Provide legacy aliases for ntp functions:
  903. ntp_adjtime(), ntp_gettime()
  904. It is safe to say N here.
  905. config UCLIBC_SV4_DEPRECATED
  906. bool "Enable SVr4 deprecated functions"
  907. help
  908. These functions are DEPRECATED in System V release 4.
  909. Say N unless you desparately need one of the functions below:
  910. ustat() [use statfs(2) in your code instead]
  911. config UCLIBC_HAS_REALTIME
  912. bool "Realtime-related family of SUSv functions"
  913. default y
  914. help
  915. These functions are part of the Timers option and need not
  916. be available on all implementations.
  917. Includes AIO, message-queue, scheduler, semaphore functions:
  918. aio.h
  919. mqueue.h
  920. sched.h
  921. semaphore.h
  922. aio_cancel()
  923. aio_error()
  924. aio_fsync()
  925. aio_read()
  926. lio_listio()
  927. aio_return()
  928. aio_suspend()
  929. aio_write()
  930. clock_getres(), clock_gettime(), clock_settime()
  931. fdatasync()
  932. mlockall(), munlockall()
  933. mlock(), munlock()
  934. mq_close()
  935. mq_getattr()
  936. mq_notify()
  937. mq_open()
  938. mq_receive()
  939. mq_send()
  940. mq_setattr()
  941. mq_unlink()
  942. nanosleep()
  943. sched_getparam()
  944. sched_get_priority_max(), sched_get_priority_min()
  945. sched_getscheduler()
  946. sched_rr_get_interval()
  947. sched_setparam()
  948. sched_setscheduler()
  949. sem_close()
  950. sem_destroy()
  951. sem_getvalue()
  952. sem_init()
  953. sem_open()
  954. sem_post()
  955. sem_trywait(), sem_wait()
  956. sem_unlink()
  957. sigqueue()
  958. sigtimedwait(), sigwaitinfo()
  959. timer_create()
  960. timer_delete()
  961. timer_getoverrun(), timer_gettime(), timer_settime()
  962. config UCLIBC_HAS_ADVANCED_REALTIME
  963. bool "Advanced realtime-related family of SUSv functions"
  964. default y
  965. depends on UCLIBC_HAS_REALTIME
  966. help
  967. These functions are part of the Timers option and need not
  968. be available on all implementations.
  969. clock_getcpuclockid()
  970. clock_nanosleep()
  971. mq_timedreceive()
  972. mq_timedsend()
  973. posix_fadvise()
  974. posix_fallocate()
  975. posix_madvise()
  976. posix_memalign()
  977. posix_mem_offset()
  978. posix_spawnattr_destroy(), posix_spawnattr_init()
  979. posix_spawnattr_getflags(), posix_spawnattr_setflags()
  980. posix_spawnattr_getpgroup(), posix_spawnattr_setpgroup()
  981. posix_spawnattr_getschedparam(), posix_spawnattr_setschedparam()
  982. posix_spawnattr_getschedpolicy(), posix_spawnattr_setschedpolicy()
  983. posix_spawnattr_getsigdefault(), posix_spawnattr_setsigdefault()
  984. posix_spawnattr_getsigmask(), posix_spawnattr_setsigmask()
  985. posix_spawn_file_actions_addclose()
  986. posix_spawn_file_actions_adddup2()
  987. posix_spawn_file_actions_addopen()
  988. posix_spawn_file_actions_destroy()
  989. posix_spawn_file_actions_init()
  990. posix_spawn()
  991. posix_spawnp()
  992. posix_typed_mem_get_info()
  993. pthread_mutex_timedlock()
  994. sem_timedwait()
  995. #config UCLIBC_HAS_TERMIOS
  996. # bool "termios functions"
  997. # default y
  998. # help
  999. # Get and set terminal attributes, line control, get and set baud
  1000. # rate.
  1001. # termios(), tcgetattr(), tcsetattr(), tcsendbreak(), tcdrain(),
  1002. # tcflush(), tcflow(), cfmakeraw(), cfgetospeed(), cfgetispeed(),
  1003. # cfsetispeed(), cfsetospeed(), cfsetspeed()
  1004. #
  1005. # If unsure, say Y.
  1006. config UCLIBC_HAS_EPOLL
  1007. bool "epoll"
  1008. default y
  1009. help
  1010. epoll_create(), epoll_ctl(), epoll_wait() functions.
  1011. config UCLIBC_HAS_XATTR
  1012. bool "Extended Attributes"
  1013. default y
  1014. help
  1015. Extended Attributes support.
  1016. setxattr()
  1017. lsetxattr()
  1018. fsetxattr()
  1019. getxattr()
  1020. lgetxattr()
  1021. fgetxattr()
  1022. listxattr()
  1023. llistxattr()
  1024. flistxattr()
  1025. removexattr()
  1026. lremovexattr()
  1027. fremovexattr()
  1028. Say N unless you need support for extended attributes and the
  1029. filesystems do actually support them.
  1030. config UCLIBC_HAS_PROFILING
  1031. bool "Profiling support"
  1032. default y
  1033. help
  1034. gcc's -finstrument-functions needs these.
  1035. Most people can safely answer N.
  1036. config UCLIBC_HAS_CRYPT_IMPL
  1037. bool "libcrypt support"
  1038. default y
  1039. help
  1040. libcrypt contains crypt(), setkey() and encrypt()
  1041. config UCLIBC_HAS_SHA256_CRYPT_IMPL
  1042. bool "libcrypt SHA256 support"
  1043. depends on UCLIBC_HAS_CRYPT_IMPL
  1044. help
  1045. This adds support for SHA256 password hashing via the crypt() function.
  1046. Say N here if you do not need SHA256 crypt support.
  1047. config UCLIBC_HAS_SHA512_CRYPT_IMPL
  1048. bool "libcrypt SHA512 support"
  1049. depends on UCLIBC_HAS_CRYPT_IMPL
  1050. help
  1051. This adds support for SHA512 password hashing via the crypt() function.
  1052. Say N here if you do not need SHA512 crypt support.
  1053. config UCLIBC_HAS_CRYPT_STUB
  1054. bool "libcrypt stubs"
  1055. default y
  1056. depends on !UCLIBC_HAS_CRYPT_IMPL
  1057. help
  1058. Standards mandate that crypt(3) provides a stub if it is unavailable.
  1059. If you enable this option then stubs for
  1060. crypt(), setkey() and encrypt()
  1061. will be provided in a small libcrypt.
  1062. config UCLIBC_HAS_CRYPT
  1063. def_bool y
  1064. depends on UCLIBC_HAS_CRYPT_IMPL || UCLIBC_HAS_CRYPT_STUB
  1065. endmenu
  1066. menuconfig UCLIBC_HAS_NETWORK_SUPPORT
  1067. bool "Networking Support"
  1068. default y
  1069. help
  1070. Say N here if you do not need network support.
  1071. if UCLIBC_HAS_NETWORK_SUPPORT
  1072. config UCLIBC_HAS_SOCKET
  1073. bool "Socket support"
  1074. default y
  1075. help
  1076. If you want to include support for sockets then answer Y.
  1077. config UCLIBC_HAS_IPV4
  1078. bool "IP version 4 support"
  1079. default y
  1080. select UCLIBC_HAS_SOCKET
  1081. help
  1082. If you want to include support for the Internet Protocol
  1083. (IP version 4) then answer Y.
  1084. Most people will say Y.
  1085. config UCLIBC_HAS_IPV6
  1086. bool "IP version 6 support"
  1087. select UCLIBC_HAS_SOCKET
  1088. help
  1089. If you want to include support for the next version of the Internet
  1090. Protocol (IP version 6) then answer Y.
  1091. Most people should answer N.
  1092. config UCLIBC_HAS_RPC
  1093. bool "Remote Procedure Call (RPC) support"
  1094. # RPC+socket-ipvX doesn't currently work.
  1095. depends on UCLIBC_HAS_IPV4 || UCLIBC_HAS_IPV6
  1096. help
  1097. If you want to include RPC support, enable this. RPC is rarely used
  1098. for anything except for the NFS filesystem. Unless you plan to use
  1099. NFS, you can probably leave this set to N and save some space.
  1100. If you need to use NFS then you should answer Y.
  1101. config UCLIBC_HAS_FULL_RPC
  1102. bool "Full RPC support"
  1103. depends on UCLIBC_HAS_RPC
  1104. default y if !HAVE_SHARED
  1105. help
  1106. Normally we enable just enough RPC support for things like rshd and
  1107. nfs mounts to work. If you find you need the rest of the RPC stuff,
  1108. then enable this option. Most people can safely answer N.
  1109. config UCLIBC_HAS_REENTRANT_RPC
  1110. bool "Reentrant RPC support"
  1111. depends on UCLIBC_HAS_RPC
  1112. default y if !HAVE_SHARED
  1113. help
  1114. Most packages utilize the normal (non-reentrant) RPC functions, but
  1115. some (like exportfs from nfs-utils) need these reentrant versions.
  1116. Most people can safely answer N.
  1117. config UCLIBC_USE_NETLINK
  1118. bool "Use netlink to query interfaces"
  1119. depends on UCLIBC_HAS_SOCKET
  1120. help
  1121. In newer versions of Linux (2.4.17+), support was added for querying
  1122. network device information via netlink rather than the old style
  1123. ioctl's. Most of the time, the older ioctl style is sufficient (and
  1124. it is smaller than netlink), but if you find that not all of your
  1125. devices are being returned by the if_nameindex() function, you will
  1126. have to use the netlink implementation.
  1127. Most people can safely answer N.
  1128. config UCLIBC_SUPPORT_AI_ADDRCONFIG
  1129. bool "Support the AI_ADDRCONFIG flag"
  1130. depends on UCLIBC_USE_NETLINK
  1131. help
  1132. The implementation of AI_ADDRCONFIG is aligned with the glibc
  1133. implementation using netlink to query interfaces to find both
  1134. ipv4 and ipv6 support. This is only needed if an application uses
  1135. the AI_ADDRCONFIG flag.
  1136. Most people can safely answer N.
  1137. config UCLIBC_HAS_BSD_RES_CLOSE
  1138. bool "Support res_close() (bsd-compat)"
  1139. help
  1140. Answer Y if you desperately want to support BSD compatibility in
  1141. the network code.
  1142. Most people will say N.
  1143. config UCLIBC_HAS_COMPAT_RES_STATE
  1144. bool "Use compatible but bloated _res"
  1145. default y
  1146. help
  1147. Answer Y if you build network utilities and they muck with resolver
  1148. internals a lot (_res global structure). uclibc does not use most
  1149. of _res.XXX fields, and with this option OFF they won't even exist.
  1150. Which will make e.g. dig build fail.
  1151. Answering N saves around 400 bytes in bss.
  1152. config UCLIBC_HAS_EXTRA_COMPAT_RES_STATE
  1153. bool "Use extra compatible but extra bloated _res"
  1154. help
  1155. Answer Y if selecting UCLIBC_HAS_COMPAT_RES_STATE is not enough.
  1156. As far as I can say, this should never be needed.
  1157. config UCLIBC_HAS_RESOLVER_SUPPORT
  1158. bool "DNS resolver functions"
  1159. select UCLIBC_HAS_COMPAT_RES_STATE
  1160. depends on UCLIBC_HAS_IPV4 || UCLIBC_HAS_IPV6
  1161. help
  1162. Provide implementations for DNS resolver functions.
  1163. In particular, the following functions will be added to the
  1164. library:
  1165. ns_skiprr, ns_initparse, ns_parserr, ns_msg_getflag,
  1166. res_mkquery, res_init, res_ninit, res_close, res_nclose
  1167. res_query, res_search, res_querydomain,
  1168. dn_expand, dn_comp,
  1169. ns_name_uncompress, ns_name_ntop, ns_name_pton, ns_name_unpack,
  1170. ns_name_pack, ns_name_compress, ns_name_skip, dn_skipname,
  1171. ns_get16, ns_get32, ns_put16, ns_put32
  1172. config UCLIBC_HAS_LIBRESOLV_STUB
  1173. bool "Provide libresolv stub"
  1174. help
  1175. Provide a dummy resolv library.
  1176. config UCLIBC_HAS_LIBNSL_STUB
  1177. bool "Provide libnsl stub"
  1178. help
  1179. Provide a dummy nsl library.
  1180. endif
  1181. menu "String and Stdio Support"
  1182. config UCLIBC_HAS_STRING_GENERIC_OPT
  1183. bool "Use faster (but larger) generic string functions"
  1184. default y
  1185. help
  1186. Answer Y to use the (tweaked) glibc generic string functions.
  1187. In general, they are faster (but 3-5K larger) than the base
  1188. uClibc string functions which are optimized solely for size.
  1189. Many people will answer Y.
  1190. config UCLIBC_HAS_STRING_ARCH_OPT
  1191. bool "Use arch-specific assembly string functions (where available)"
  1192. default y
  1193. help
  1194. Answer Y to use any archtecture-specific assembly language string
  1195. functions available for this target plaform.
  1196. Note that assembly implementations are not available for all string
  1197. functions, so some generic (written in C) string functions may
  1198. still be used.
  1199. These are small and fast, the only reason _not_ to say Y here is
  1200. for debugging purposes.
  1201. config UCLIBC_HAS_CTYPE_TABLES
  1202. bool "Use Table Versions Of 'ctype.h' Functions."
  1203. default y
  1204. help
  1205. Answer Y to use table versions of the 'ctype.h' functions.
  1206. While the non-table versions are often smaller when building
  1207. statically linked apps, they work only in stub locale mode.
  1208. Most people will answer Y.
  1209. config UCLIBC_HAS_CTYPE_SIGNED
  1210. bool "Support Signed Characters In 'ctype.h' Functions."
  1211. depends on UCLIBC_HAS_CTYPE_TABLES
  1212. default y
  1213. help
  1214. Answer Y to enable support for passing signed char values to
  1215. the 'ctype.h' functions. ANSI/ISO C99 and SUSv3 specify that
  1216. these functions are only defined for unsigned char values and
  1217. EOF. However, glibc allows negative signed char values as well
  1218. in order to support 'broken old programs'.
  1219. Most people will answer Y.
  1220. choice
  1221. prompt "ctype argument checking"
  1222. depends on UCLIBC_HAS_CTYPE_TABLES
  1223. default UCLIBC_HAS_CTYPE_UNSAFE
  1224. help
  1225. Please select the invalid arg behavior you want for the 'ctype'
  1226. functions.
  1227. The 'ctype' functions are now implemented using table lookups, with
  1228. the arg being the index. This can result in incorrect memory accesses
  1229. or even segfaults for args outside of the allowed range.
  1230. NOTE: This only affects the 'ctype' _functions_. It does not affect
  1231. the macro implementations.
  1232. config UCLIBC_HAS_CTYPE_UNSAFE
  1233. bool "Do not check -- unsafe"
  1234. config UCLIBC_HAS_CTYPE_CHECKED
  1235. bool "Detect and handle appropriately"
  1236. config UCLIBC_HAS_CTYPE_ENFORCED
  1237. bool "Issue a diagnostic and abort()"
  1238. endchoice
  1239. config UCLIBC_HAS_WCHAR
  1240. bool "Wide Character Support"
  1241. help
  1242. Answer Y to enable wide character support. This will make uClibc
  1243. much larger. It is also currently required for locale support.
  1244. Most people will answer N.
  1245. config UCLIBC_HAS_LOCALE
  1246. bool "Locale Support"
  1247. select UCLIBC_HAS_WCHAR
  1248. select UCLIBC_HAS_CTYPE_TABLES
  1249. help
  1250. uClibc now has full ANSI/ISO C99 locale support (except for
  1251. wcsftime() and collating items in regex). Be aware that enabling
  1252. this option will make uClibc much larger.
  1253. Enabling UCLIBC_HAS_LOCALE with the default set of supported locales
  1254. (169 UTF-8 locales, and 144 locales for other codesets) will enlarge
  1255. uClibc by around 300k. You can reduce this size by building your own
  1256. custom set of locate data (see extra/locale/LOCALES for details).
  1257. uClibc's locale support is still under development. For example,
  1258. codesets using shift states are not currently supported. Support is
  1259. planned in the next iteration of locale support.
  1260. Answer Y to enable locale support. Most people will answer N.
  1261. choice
  1262. prompt "Locale data"
  1263. depends on UCLIBC_HAS_LOCALE
  1264. default UCLIBC_BUILD_ALL_LOCALE
  1265. config UCLIBC_BUILD_ALL_LOCALE
  1266. bool "All locales"
  1267. depends on UCLIBC_HAS_LOCALE
  1268. help
  1269. This builds all the locales that are available on your
  1270. host-box.
  1271. config UCLIBC_BUILD_MINIMAL_LOCALE
  1272. bool "Only selected locales"
  1273. depends on UCLIBC_HAS_LOCALE
  1274. help
  1275. If you do not need all locales that are available on your
  1276. host-box, then set this to 'Y'.
  1277. config UCLIBC_PREGENERATED_LOCALE_DATA
  1278. bool "Use Pre-generated Locale Data"
  1279. depends on UCLIBC_HAS_LOCALE && !TARGET_metag
  1280. help
  1281. Use pre-built locale data.
  1282. Note that these pregenerated locales are sensitive to your
  1283. target architecture (endianess, bitcount).
  1284. Saying N here is highly recommended.
  1285. endchoice
  1286. config UCLIBC_BUILD_MINIMAL_LOCALES
  1287. string "locales to use"
  1288. depends on UCLIBC_BUILD_MINIMAL_LOCALE
  1289. default "en_US"
  1290. help
  1291. Space separated list of locales to use.
  1292. E.g.:
  1293. en_US en_GB de_AT
  1294. default:
  1295. en_US
  1296. config UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA
  1297. bool "Automagically Download the Pre-generated Locale Data (if necessary)"
  1298. depends on UCLIBC_PREGENERATED_LOCALE_DATA
  1299. help
  1300. If you would like the build process to use 'wget' to automatically
  1301. download the pregenerated locale data, enable this option. Otherwise
  1302. you will need to obtain the locale data yourself from:
  1303. http://www.uclibc.org/downloads/uClibc-locale-*.tgz
  1304. and place the uClibc-locale-*.tgz tarball in the extra/locale/
  1305. directory.
  1306. Note that the use of pregenerated locale data is discouraged.
  1307. config UCLIBC_HAS_XLOCALE
  1308. bool "Extended Locale Support (experimental/incomplete)"
  1309. depends on UCLIBC_HAS_LOCALE
  1310. help
  1311. Answer Y to enable extended locale support similar to that provided
  1312. by glibc. This is primarily intended to support libstd++
  1313. functionality.
  1314. However, it also allows thread-specific locale selection via
  1315. uselocale().
  1316. Most people will answer N.
  1317. config UCLIBC_HAS_HEXADECIMAL_FLOATS
  1318. bool "Support hexadecimal float notation"
  1319. depends on UCLIBC_HAS_CTYPE_TABLES
  1320. depends on UCLIBC_HAS_FLOATS
  1321. help
  1322. Answer Y to enable support for hexadecimal float notation in the
  1323. (wchar and) char string to floating point conversion functions, as
  1324. well as support for the %a and %A conversion specifiers in the
  1325. *printf() and *scanf() functions.
  1326. Most people will answer N.
  1327. config UCLIBC_HAS_GLIBC_DIGIT_GROUPING
  1328. bool "Support glibc's \"'\" flag for allowing locale-specific digit grouping"
  1329. depends on UCLIBC_HAS_LOCALE
  1330. depends on UCLIBC_HAS_FLOATS
  1331. help
  1332. Answer Y to enable support for glibc's \"'\" flag for allowing
  1333. locale-specific digit grouping in base 10 integer conversions and
  1334. appropriate floating point conversions in the *printf() and *scanf()
  1335. functions.
  1336. Most people will answer N.
  1337. config UCLIBC_HAS_SCANF_LENIENT_DIGIT_GROUPING
  1338. bool "Do not require digit grouping when the \"'\" flag is specified"
  1339. depends on UCLIBC_HAS_GLIBC_DIGIT_GROUPING
  1340. default y
  1341. help
  1342. Answer Y to make digit grouping optional when the \"'\" flag is
  1343. specified.
  1344. This is the standard glibc behavior. If the initial string of digits
  1345. exceeds the maximum group number, the input will be treated as a
  1346. normal non-grouped number.
  1347. Most people will answer N.
  1348. config UCLIBC_HAS_GLIBC_CUSTOM_PRINTF
  1349. bool "Support glibc's register_printf_function() (glibc-compat)"
  1350. depends on !USE_OLD_VFPRINTF
  1351. help
  1352. Answer Y to support glibc's register_printf_function() to allow an
  1353. application to add its own printf conversion specifiers.
  1354. parse_printf_format() is also enabled.
  1355. NOTE: Limits the number or registered specifiers to 10.
  1356. NOTE: Requires new conversion specifiers to be ASCII
  1357. characters (0-0x7f). This is to avoid problems with processing
  1358. format strings in locales with different multibyte conversions.
  1359. Most people will answer N.
  1360. config USE_OLD_VFPRINTF
  1361. bool "Use the old vfprintf implementation"
  1362. depends on !UCLIBC_HAS_WCHAR
  1363. help
  1364. Set to true to use the old vfprintf instead of the new. This is
  1365. roughly C89 compliant with some extensions, and is much smaller.
  1366. However, it does not support wide chars, positional args, or glibc
  1367. custom printf specifiers.
  1368. Most people will answer N.
  1369. config UCLIBC_PRINTF_SCANF_POSITIONAL_ARGS
  1370. int "Maximum number of positional args. Either 0 or >= 9."
  1371. depends on !USE_OLD_VFPRINTF
  1372. default 9
  1373. help
  1374. Set the maximum number of positional args supported by the
  1375. printf/scanf functions. The Single Unix Specification Version 3
  1376. requires a minimum value of 9. Setting this to a value lower than
  1377. 9 will disable positional arg support and cause the NL_ARGMAX macro
  1378. in limits.h to be #undef'd.
  1379. WARNING! The workspace to support positional args is currently
  1380. allocated on the stack. You probably don't want to set
  1381. this to too high a value.
  1382. Most people will answer 9.
  1383. choice
  1384. prompt "Stdio buffer size"
  1385. default UCLIBC_HAS_STDIO_BUFSIZ_4096
  1386. help
  1387. Please select a value for BUFSIZ. This will be used by the
  1388. stdio subsystem as the default buffer size for a file, and
  1389. affects fopen(), setvbuf(), etc.
  1390. NOTE: Setting this to 'none' will disable buffering completely.
  1391. However, BUFSIZ will still be defined in stdio.h as 256 because
  1392. many applications use this value.
  1393. config UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1394. bool "none (WARNING - BUFSIZ will be 256 in stdio.h)"
  1395. depends on !UCLIBC_HAS_WCHAR
  1396. config UCLIBC_HAS_STDIO_BUFSIZ_256
  1397. bool "256 (minimum ANSI/ISO C99 value)"
  1398. config UCLIBC_HAS_STDIO_BUFSIZ_512
  1399. bool "512"
  1400. config UCLIBC_HAS_STDIO_BUFSIZ_1024
  1401. bool "1024"
  1402. config UCLIBC_HAS_STDIO_BUFSIZ_2048
  1403. bool "2048"
  1404. config UCLIBC_HAS_STDIO_BUFSIZ_4096
  1405. bool "4096"
  1406. config UCLIBC_HAS_STDIO_BUFSIZ_8192
  1407. bool "8192"
  1408. # If you add more choices, you will need to update uClibc_stdio.h.
  1409. endchoice
  1410. choice
  1411. prompt "Stdio builtin buffer size (uClibc-specific)"
  1412. depends on !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1413. default UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE
  1414. help
  1415. When a FILE is created with fopen(), an attempt is made to allocate
  1416. a BUFSIZ buffer for it. If the allocation fails, fopen() will still
  1417. succeed but the FILE will be unbuffered.
  1418. This option adds a small amount of space to each FILE to act as an
  1419. emergency buffer in the event of a buffer allocation failure.
  1420. Most people will answer None.
  1421. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE
  1422. bool "None"
  1423. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_4
  1424. bool "4"
  1425. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_8
  1426. bool "8"
  1427. # If you add more choices, you will need to update uClibc_stdio.h.
  1428. endchoice
  1429. config UCLIBC_HAS_STDIO_SHUTDOWN_ON_ABORT
  1430. bool "Attempt to shutdown stdio subsystem when abort() is called."
  1431. help
  1432. ANSI/ISO C99 requires abort() to be asyn-signal-safe. So there was
  1433. a behavioral change made in SUSv3. Previously, abort() was required
  1434. to have the affect of fclose() on all open streams. The wording has
  1435. been changed to "may" from "shall".
  1436. Most people will answer N.
  1437. config UCLIBC_HAS_STDIO_GETC_MACRO
  1438. bool "Provide a macro version of getc()"
  1439. depends on !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1440. default y
  1441. help
  1442. Provide a macro version of getc().
  1443. Most people will answer Y.
  1444. config UCLIBC_HAS_STDIO_PUTC_MACRO
  1445. bool "Provide a macro version of putc()"
  1446. depends on !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  1447. default y
  1448. help
  1449. Provide a macro version of putc().
  1450. Most people will answer Y.
  1451. config UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION
  1452. bool "Support auto-r/w transition"
  1453. default y
  1454. help
  1455. Answer Y to enable the stdio subsystem to automaticly transition
  1456. between reading and writing. This relaxes the ANSI/ISO C99
  1457. requirement:
  1458. When a file is opened with update mode ('+' as the second or third
  1459. character in the list of mode argument values), both input and output
  1460. may be performed on the associated stream. However, output shall not
  1461. be directly followed by input without an intervening call to the
  1462. fflush function or to a file positioning function (fseek, fsetpos,
  1463. or rewind), and input shall not be directly followed by output without
  1464. an intervening call to a file positioning function, unless the input
  1465. operation encounters end­of­file.
  1466. Most people will answer Y.
  1467. config UCLIBC_HAS_FOPEN_LARGEFILE_MODE
  1468. bool "Support an fopen() 'F' flag for large file mode (uClibc-specific)"
  1469. depends on UCLIBC_HAS_LFS
  1470. help
  1471. Answer Y to enable a uClibc-specific extension to allow passing an
  1472. additional 'F' flag in the mode string for fopen() to specify that
  1473. the file should be open()ed with the O_LARGEFILE flag set.
  1474. Most people will answer N.
  1475. config UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE
  1476. bool "Support an fopen() 'x' flag for exclusive mode (glibc-compat)"
  1477. help
  1478. Answer Y to support a glibc extension to allow passing
  1479. additional 'x' flag in the mode string for fopen() to specify that
  1480. the file should be open()ed with the O_EXCL flag set.
  1481. Most people will answer N.
  1482. config UCLIBC_HAS_FOPEN_CLOSEEXEC_MODE
  1483. bool "Support an fopen() 'e' flag for close-on-exec mode (glibc-compat)"
  1484. help
  1485. Answer Y to support a glibc extension to allow passing
  1486. additional 'e' flag in the mode string for fopen() to specify that
  1487. the file should be open()ed with the O_CLOEXEC flag set.
  1488. Most people will answer N.
  1489. config UCLIBC_HAS_GLIBC_CUSTOM_STREAMS
  1490. bool "Support fmemopen(), open_memstream(), and fopencookie() (glibc-compat)"
  1491. help
  1492. Answer Y to support the glibc 'custom stream' extension functions
  1493. fmemopen(), open_memstream(), and fopencookie().
  1494. NOTE: There are some minor differences regarding seeking behavior.
  1495. Most people will answer N.
  1496. config UCLIBC_HAS_PRINTF_M_SPEC
  1497. bool "Support the '%m' specifier in printf format strings (glibc-compat)"
  1498. help
  1499. Answer Y to support a glibc extension to interpret '%m' in printf
  1500. format strings as an instruction to output the error message string
  1501. (as generated by strerror) corresponding to the current value of
  1502. 'errno'.
  1503. Most people will answer N.
  1504. config UCLIBC_HAS_ERRNO_MESSAGES
  1505. bool "Include the errno message text in the library"
  1506. default y
  1507. help
  1508. Answer Y if you want to include the errno message text in the
  1509. library. This adds about 3K to the library, but enables strerror()
  1510. to generate text other than 'Unknown error <number>'.
  1511. Most people will answer Y.
  1512. config UCLIBC_HAS_SYS_ERRLIST
  1513. bool "Support sys_errlist[] (obsolete-compat)"
  1514. depends on UCLIBC_HAS_ERRNO_MESSAGES
  1515. help
  1516. Answer Y if you want to support the obsolete sys_errlist[].
  1517. This adds about 0.5k to the library, except for the mips
  1518. arch where it adds over 4K.
  1519. WARNING! In the future, support for sys_errlist[] may be unavailable
  1520. in at least some configurations. In fact, it may be removed
  1521. altogether.
  1522. Most people will answer N.
  1523. Application writers: use the strerror(3) function.
  1524. config UCLIBC_HAS_SIGNUM_MESSAGES
  1525. bool "Include the signum message text in the library"
  1526. default y
  1527. help
  1528. Answer Y if you want to include the signum message text in the
  1529. library. This adds about 0.5K to the library, but enables strsignal()
  1530. to generate text other than 'Unknown signal <number>'.
  1531. Most people will answer Y.
  1532. config UCLIBC_HAS_SYS_SIGLIST
  1533. bool "Support sys_siglist[] (bsd-compat)"
  1534. depends on UCLIBC_HAS_SIGNUM_MESSAGES
  1535. help
  1536. Answer Y if you want to support sys_siglist[].
  1537. WARNING! In the future, support for sys_siglist[] may be unavailable
  1538. in at least some configurations. In fact, it may be removed
  1539. altogether.
  1540. Most people will answer N.
  1541. config UCLIBC_HAS_GETTEXT_AWARENESS
  1542. bool "Include gettext awareness"
  1543. depends on UCLIBC_HAS_LOCALE && UCLIBC_MJN3_ONLY
  1544. help
  1545. NOTE!!! Not yet integrated with strerror and strsignal. NOTE!!!
  1546. Answer Y if you want to include weak stub gettext support and
  1547. make the *strerror*() and strsignal() functions gettext-aware.
  1548. Currently, to get functional gettext functionality you will need
  1549. to use gnu gettext.
  1550. Most people will answer N.
  1551. config UCLIBC_HAS_GNU_GETOPT
  1552. bool "Support gnu getopt"
  1553. default y
  1554. help
  1555. Answer Y if you want to include full gnu getopt() instead of a
  1556. (much smaller) SUSv3 compatible getopt().
  1557. Most people will answer Y.
  1558. config UCLIBC_HAS_STDIO_FUTEXES
  1559. bool "Use futexes for multithreaded I/O locking"
  1560. depends on UCLIBC_HAS_THREADS_NATIVE
  1561. help
  1562. If you want to compile uClibc to use futexes for low-level
  1563. I/O locking, answer Y. Otherwise, answer N.
  1564. config UCLIBC_HAS_GETOPT_LONG
  1565. bool "Support getopt_long/getopt_long_only"
  1566. depends on !UCLIBC_HAS_GNU_GETOPT
  1567. default y
  1568. help
  1569. Answer Y if you want to include getopt_long[_only() used by many
  1570. apps, even busybox.
  1571. Most people will answer Y.
  1572. config UCLIBC_HAS_GNU_GETSUBOPT
  1573. bool "Support glibc getsubopt"
  1574. default y
  1575. help
  1576. Answer Y if you want to include glibc getsubopt() instead of a
  1577. smaller SUSv3 compatible getsubopt().
  1578. Most people will answer Y.
  1579. endmenu
  1580. menu "Big and Tall"
  1581. config UCLIBC_HAS_REGEX
  1582. bool "Regular Expression Support"
  1583. default y
  1584. help
  1585. POSIX regular expression code is really big -- 53k all by itself.
  1586. If you don't use regular expressions, turn this off and save space.
  1587. Of course, if you only statically link, leave this on, since it will
  1588. only be included in your apps if you use regular expressions.
  1589. config UCLIBC_HAS_REGEX_OLD
  1590. bool "Use the older (stable) regular expression code"
  1591. depends on UCLIBC_HAS_REGEX
  1592. default y
  1593. help
  1594. There are two versions of regex. The older (stable) version has
  1595. been in uClibc for quite a long time but hasn't seen too many
  1596. updates. It also has some known issues when dealing with uncommon
  1597. corner cases and multibyte/unicode strings. However, it is quite
  1598. a bit smaller than the newer version.
  1599. If the older version has worked for you and you don't need unicode
  1600. support, then stick with the old version (and say Y here).
  1601. Otherwise, you should use the new version (and say N here).
  1602. config UCLIBC_HAS_FNMATCH
  1603. bool "fnmatch Support"
  1604. default y
  1605. help
  1606. POSIX fnmatch.
  1607. config UCLIBC_HAS_FNMATCH_OLD
  1608. bool "Use the older (stable) fnmatch code"
  1609. depends on UCLIBC_HAS_FNMATCH
  1610. default y
  1611. help
  1612. There are two versions of fnmatch. The older (stable) version has
  1613. been in uClibc for quite a long time but hasn't seen too many
  1614. updates. It also has some known issues when dealing with uncommon
  1615. corner cases and multibyte/unicode strings. However, it is quite
  1616. a bit smaller than the newer version.
  1617. If the older version has worked for you and you don't need unicode
  1618. support, then stick with the old version (and say Y here).
  1619. Otherwise, you should use the new version (and say N here).
  1620. config UCLIBC_HAS_WORDEXP
  1621. bool "Support the wordexp() interface"
  1622. depends on UCLIBC_HAS_GLOB
  1623. help
  1624. The SuSv3 wordexp() interface performs word expansions per the Shell
  1625. and Utilities volume of IEEE Std 1003.1-2001, Section 2.6. It is
  1626. intended for use by applications that want to implement all of the
  1627. standard Bourne shell expansions on input data.
  1628. This interface is rarely used, and very large. Unless you have a
  1629. pressing need for wordexp(), you should probably answer N.
  1630. config UCLIBC_HAS_NFTW
  1631. bool "Support the nftw() interface"
  1632. help
  1633. The SuSv3 nftw() interface is used to recursively descend
  1634. directory paths while repeatedly calling a function.
  1635. This interface is rarely used, and adds around 4.5k. Unless you have
  1636. a pressing need for nftw(), you should probably answer N.
  1637. config UCLIBC_HAS_FTW
  1638. bool "Support the ftw() interface (SUSv4-obsolete)"
  1639. depends on UCLIBC_SUSV4_LEGACY
  1640. help
  1641. The SuSv3 ftw() interface is used to recursively descend
  1642. directory paths while repeatedly calling a function.
  1643. This interface is rarely used, and adds around 4.5k. Unless you have
  1644. a pressing need for ftw(), you should probably answer N.
  1645. config UCLIBC_HAS_FTS
  1646. bool "Support the fts() interface (bsd-compat)"
  1647. help
  1648. The fts functions are provided for traversing UNIX file hierarchies.
  1649. This interface is currently used by the elfutils and adds
  1650. around 7.5k.
  1651. You should port your application to use the POSIX nftw()
  1652. interface.
  1653. Unless you need to build/use elfutils, you should prolly answer N.
  1654. config UCLIBC_HAS_GLOB
  1655. bool "Support the glob() interface"
  1656. depends on UCLIBC_HAS_FNMATCH
  1657. default y
  1658. help
  1659. The glob interface is somewhat large (weighing in at about 2,5k). It
  1660. is used fairly often, but is an option since people wanting to go for
  1661. absolute minimum size may wish to omit it.
  1662. Most people will answer Y.
  1663. config UCLIBC_HAS_GNU_GLOB
  1664. bool "Support gnu glob() interface"
  1665. depends on UCLIBC_HAS_GLOB
  1666. help
  1667. The gnu glob interface is somewhat larger (weighing in at about 4,2k)
  1668. than it's SuSv3 counterpart (and is out of date). It is an old copy
  1669. from glibc and does not support all the GNU specific options.
  1670. Answer Y if you want to include full gnu glob() instead of the smaller
  1671. SUSv3 compatible glob().
  1672. Most people will answer N.
  1673. config UCLIBC_HAS_UTMPX
  1674. bool "utmpx based support for tracking login/logouts to/from the system"
  1675. help
  1676. Answer y to enable support for accessing user accounting database.
  1677. It can be used to track all login/logout to the system.
  1678. If unsure, just answer N.
  1679. endmenu
  1680. menu "Library Installation Options"
  1681. config RUNTIME_PREFIX
  1682. string "uClibc runtime library directory"
  1683. default "/usr/$(TARGET_ARCH)-linux-uclibc/"
  1684. help
  1685. RUNTIME_PREFIX is the directory into which the uClibc runtime
  1686. libraries will be installed. The result will look something
  1687. like the following:
  1688. $(RUNTIME_PREFIX)/
  1689. lib/ <contains all runtime libraries>
  1690. usr/bin/ldd <the ldd utility program>
  1691. sbin/ldconfig <the ldconfig utility program>
  1692. This value is used by the 'make install' Makefile target. Since this
  1693. directory is compiled into the shared library loader, you will need to
  1694. recompile uClibc if you change this value...
  1695. For a typical target system this should be set to "/", such that
  1696. 'make install' will install /lib/libuClibc-<VERSION>.so
  1697. config DEVEL_PREFIX
  1698. string "uClibc development environment directory"
  1699. default "/usr/$(TARGET_ARCH)-linux-uclibc/usr/"
  1700. help
  1701. DEVEL_PREFIX is the directory into which the uClibc development
  1702. environment will be installed. The result will look something
  1703. like the following:
  1704. $(DEVEL_PREFIX)/
  1705. lib/ <contains static libs>
  1706. include/ <Where all the header files go>
  1707. This value is used by the 'make install' Makefile target when
  1708. installing a uClibc development environment.
  1709. For a typical target system this should be set to "/usr", such that
  1710. 'make install' will install /usr/include/<header files>.
  1711. config MULTILIB_DIR
  1712. string "library path component"
  1713. default "lib"
  1714. help
  1715. Path component where libraries reside.
  1716. For a typical target system this should be set to "lib", such that
  1717. 'make install' will install libraries to "/lib" and "/usr/lib"
  1718. respectively
  1719. DEVEL_PREFIX/MULTILIB_DIR
  1720. RUNTIME_PREFIX/MULTILIB_DIR
  1721. Other settings may include "lib32" or "lib64".
  1722. config HARDWIRED_ABSPATH
  1723. bool "Hardwire absolute paths into linker scripts"
  1724. default y
  1725. help
  1726. This prepends absolute paths to the libraries mentioned in linker
  1727. scripts such as libc.so.
  1728. This is a build time optimization. It has no impact on dynamic
  1729. linking at runtime, which doesn't use linker scripts.
  1730. You must disable this to use uClibc with old non-sysroot toolchains,
  1731. such as the prebuilt binary cross compilers at:
  1732. http://uclibc.org/downloads/binaries
  1733. The amount of time saved by this optimization is actually too small to
  1734. measure. The linker just had to search the library path to find the
  1735. linker script, so the dentries are cache hot if it has to search the
  1736. same path again. But it's what glibc does, so we do it too.
  1737. endmenu
  1738. menu "Security options"
  1739. config UCLIBC_BUILD_PIE
  1740. bool "Build utilities as ET_DYN/PIE executables"
  1741. depends on HAVE_SHARED
  1742. depends on TARGET_arm || TARGET_frv || TARGET_i386 || TARGET_mips || TARGET_powerpc
  1743. select FORCE_SHAREABLE_TEXT_SEGMENTS
  1744. help
  1745. If you answer Y here, ldd and iconv are built as ET_DYN/PIE
  1746. executables.
  1747. It requires gcc-3.4 and binutils-2.15 (for arm 2.16) or later.
  1748. More about ET_DYN/PIE binaries on <http://pax.grsecurity.net/> .
  1749. WARNING: This option also enables FORCE_SHAREABLE_TEXT_SEGMENTS, so
  1750. all libraries have to be built with -fPIC or -fpic, and all
  1751. assembler functions must be written as position independent
  1752. code (PIC).
  1753. config UCLIBC_HAS_ARC4RANDOM
  1754. bool "Include the arc4random() function"
  1755. help
  1756. Answer Y to support the OpenBSD-like arc4random() function. This
  1757. function picks a random number between 0 and N, and will always return
  1758. something even if the random driver is dead. If urandom fails then
  1759. gettimeofday(2) will be used as the random seed. This function is
  1760. designed to be more dependable than invoking /dev/urandom directly.
  1761. OpenSSL and OpenNTPD currently support this function.
  1762. Most people will answer N.
  1763. config ARC4RANDOM_USES_NODEV
  1764. bool "Do not use /dev/urandom with arc4random()"
  1765. depends on UCLIBC_HAS_ARC4RANDOM
  1766. help
  1767. Answer Y to use gettimeofday(2) and getpid(2) exclusively for
  1768. arc4random(). This is not a bad idea for a diskless system, but
  1769. it uses a lot of syscalls to stir each array element.
  1770. Most people will answer N.
  1771. config HAVE_NO_SSP
  1772. bool
  1773. config UCLIBC_HAS_SSP
  1774. bool "Support for GCC stack smashing protector"
  1775. depends on !HAVE_NO_SSP
  1776. help
  1777. Add code to support GCC's -fstack-protector[-all] option to uClibc.
  1778. This requires GCC 4.1 or newer. GCC does not have to provide libssp,
  1779. the needed functions are added to ldso/libc instead.
  1780. GCC's stack protector is a reimplementation of IBM's propolice.
  1781. See http://www.trl.ibm.com/projects/security/ssp/ and
  1782. http://www.linuxfromscratch.org/hints/downloads/files/ssp.txt
  1783. for details.
  1784. Note that NOEXECSTACK on a kernel with address space randomization
  1785. is generally sufficient to prevent most buffer overflow exploits
  1786. without increasing code size. This option essentially adds debugging
  1787. code to catch them.
  1788. Most people will answer N.
  1789. config UCLIBC_HAS_SSP_COMPAT
  1790. bool "Support for gcc-3.x propolice smashing stack protector"
  1791. depends on UCLIBC_HAS_SSP
  1792. help
  1793. Add gcc-3.x propolice smashing stack protector to the library.
  1794. This requires a patched version of GCC, supporting the
  1795. -fstack-protector[-all] options, with the __guard and
  1796. __stack_smash_handler functions removed from libgcc.
  1797. These functions are added to ldso/libc instead.
  1798. More information at:
  1799. <http://www.research.ibm.com/trl/projects/security/ssp/>
  1800. Most people will answer N.
  1801. config SSP_QUICK_CANARY
  1802. bool "Use simple guard values without accessing /dev/urandom"
  1803. depends on UCLIBC_HAS_SSP
  1804. help
  1805. Use gettimeofday(2) to define the __guard without accessing
  1806. /dev/urandom.
  1807. WARNING: This makes smashing stack protector vulnerable to timing
  1808. attacks.
  1809. Most people will answer N.
  1810. choice
  1811. prompt "Propolice protection blocking signal"
  1812. depends on UCLIBC_HAS_SSP
  1813. depends on DODEBUG
  1814. default PROPOLICE_BLOCK_SEGV
  1815. help
  1816. "abort" use SIGABRT to block offending programs.
  1817. This is the default implementation.
  1818. "segfault" use SIGSEGV to block offending programs.
  1819. Use this for debugging.
  1820. If unsure, answer "abort".
  1821. config PROPOLICE_BLOCK_ABRT
  1822. bool "abort"
  1823. config PROPOLICE_BLOCK_SEGV
  1824. bool "segfault"
  1825. endchoice
  1826. config UCLIBC_BUILD_SSP
  1827. bool "Build uClibc with -fstack-protector"
  1828. depends on UCLIBC_HAS_SSP
  1829. help
  1830. Build all uClibc libraries and executables with -fstack-protector,
  1831. adding extra stack overflow checking to most uClibc functions.
  1832. config UCLIBC_BUILD_RELRO
  1833. bool "Build uClibc with linker option -z RELRO"
  1834. depends on HAVE_SHARED
  1835. default y
  1836. help
  1837. Build all libraries and executables with "ld -z relro".
  1838. This tells the linker to mark chunks of an executable or shared
  1839. library read-only after applying dynamic relocations. (This comes
  1840. up when a global const variable is initialized to the address of a
  1841. function or the value of another global variable.)
  1842. This is a fairly obscure option the ld man page doesn't even bother
  1843. to document properly. It's a security paranoia issue that's more
  1844. likely to consume memory (by allocating an extra page) rather than
  1845. save it.
  1846. This is explained in more depth at
  1847. http://www.airs.com/blog/archives/189
  1848. Nobody is likely to care whether you say Y or N here.
  1849. config UCLIBC_BUILD_NOW
  1850. bool "Build uClibc with linker option -z NOW"
  1851. depends on HAVE_SHARED
  1852. help
  1853. Build all libraries and executables with "ld -z now".
  1854. This tells the linker to resolve all symbols when the library is
  1855. first loaded, rather than when each function is first called. This
  1856. increases start-up latency by a few microseconds and may do
  1857. unnecessary work (resolving symbols that are never used), but the
  1858. realtime people like it for making microbenchmark timings slightly
  1859. more predictable and in some cases it can be slightly faster due to
  1860. CPU cache behavior (not having to fault the linker back in to do
  1861. lazy symbol resolution).
  1862. Most people can't tell the difference between selecting Y or N here.
  1863. config UCLIBC_BUILD_NOEXECSTACK
  1864. bool "Build uClibc with noexecstack marking"
  1865. default y
  1866. help
  1867. Mark all assembler files as noexecstack, which will mark uClibc
  1868. as not requiring an executable stack. (This doesn't prevent other
  1869. files you link against from claiming to need an executable stack, it
  1870. just won't cause uClibc to request it unnecessarily.)
  1871. This is a security thing to make buffer overflows harder to exploit.
  1872. By itself, it's kind of useless, as Linus Torvalds explained in 1998:
  1873. http://old.lwn.net/1998/0806/a/linus-noexec.html
  1874. It only actually provides any security when combined with address
  1875. space randomization, explained here: http://lwn.net/Articles/121845/
  1876. Address space randomization is on by default in current linux
  1877. kernels (although it can be disabled using the option
  1878. CONFIG_COMPAT_BRK).
  1879. You should probably say Y.
  1880. endmenu
  1881. menu "Development/debugging options"
  1882. config CROSS_COMPILER_PREFIX
  1883. string "Cross-compiling toolchain prefix"
  1884. default ""
  1885. help
  1886. The prefix used to execute your cross-compiling toolchain. For
  1887. example, if you run 'arm-linux-uclibc-gcc' to compile something,
  1888. then enter 'arm-linux-uclibc-' here.
  1889. config UCLIBC_EXTRA_CFLAGS
  1890. string "Extra CFLAGS"
  1891. default ""
  1892. help
  1893. Add any additional CFLAGS to be used to build uClibc.
  1894. config DODEBUG
  1895. bool "Enable debugging symbols"
  1896. select EXTRA_WARNINGS
  1897. help
  1898. Say Y here if you wish to compile uClibc with debugging symbols.
  1899. This will allow you to use a debugger to examine uClibc internals
  1900. while applications are running. This increases the size of the
  1901. library considerably and should only be used when doing development.
  1902. If you are doing development and want to debug uClibc, answer Y.
  1903. Otherwise, answer N.
  1904. config DODEBUG_PT
  1905. bool "Build pthread with debugging output"
  1906. depends on UCLIBC_HAS_THREADS && LINUXTHREADS_OLD
  1907. help
  1908. Enable debug output in libpthread. This is only useful when doing
  1909. development in libpthread itself.
  1910. Otherwise, answer N.
  1911. config DOSTRIP
  1912. bool "Strip libraries and executables"
  1913. default y
  1914. depends on !DODEBUG
  1915. help
  1916. Say Y here if you do wish to strip all uClibc libraries and
  1917. executables. No stripping increases the size of the binaries
  1918. considerably, but makes it possible to debug uClibc libraries.
  1919. Most people will answer Y.
  1920. config DOASSERTS
  1921. bool "Build with run-time assertion testing"
  1922. help
  1923. Say Y here to include runtime assertion tests.
  1924. This enables runtime assertion testing in some code, which can
  1925. increase the size of the library and incur runtime overhead.
  1926. If you say N, then this testing will be disabled.
  1927. config SUPPORT_LD_DEBUG
  1928. bool "Build the shared library loader with debugging support"
  1929. depends on HAVE_SHARED
  1930. help
  1931. Answer Y here to enable all the extra code needed to debug the uClibc
  1932. native shared library loader. The level of debugging noise that is
  1933. generated depends on the LD_DEBUG environment variable... Just set
  1934. LD_DEBUG to something like: 'LD_DEBUG=token1,token2,.. prog' to
  1935. debug your application. Diagnostic messages will then be printed to
  1936. the stderr.
  1937. For now these debugging tokens are available:
  1938. detail provide more information for some options
  1939. move display copy processing
  1940. symbols display symbol table processing
  1941. reloc display relocation processing; detail shows the
  1942. relocation patch
  1943. nofixups never fixes up jump relocations
  1944. bindings displays the resolve processing (function calls);
  1945. detail shows the relocation patch
  1946. all Enable everything!
  1947. The additional environment variable:
  1948. LD_DEBUG_OUTPUT=file
  1949. redirects the diagnostics to an output file created using
  1950. the specified name and the process id as a suffix.
  1951. An excellent start is simply:
  1952. $ LD_DEBUG=binding,move,symbols,reloc,detail ./appname
  1953. or to log everything to a file named 'logfile', try this
  1954. $ LD_DEBUG=all LD_DEBUG_OUTPUT=logfile ./appname
  1955. If you are doing development and want to debug uClibc's shared library
  1956. loader, answer Y. Mere mortals answer N.
  1957. config SUPPORT_LD_DEBUG_EARLY
  1958. bool "Build the shared library loader with early debugging support"
  1959. depends on HAVE_SHARED
  1960. help
  1961. Answer Y here to if you find the uClibc shared library loader is
  1962. crashing or otherwise not working very early on. This is typical
  1963. only when starting a new port when you haven't figured out how to
  1964. properly get the values for argc, argv, environ, etc. This method
  1965. allows a degree of visibility into the very early shared library
  1966. loader initialization process. If you are doing development and want
  1967. to debug the uClibc shared library loader early initialization,
  1968. answer Y. Mere mortals answer N.
  1969. config UCLIBC_MALLOC_DEBUGGING
  1970. bool "Build malloc with debugging support"
  1971. depends on MALLOC || MALLOC_STANDARD
  1972. select DOASSERTS
  1973. help
  1974. Answer Y here to compile extra debugging support code into malloc.
  1975. Malloc debugging output may then be enabled at runtime using the
  1976. MALLOC_DEBUG environment variable.
  1977. The value of MALLOC_DEBUG should be an integer, which is interpreted
  1978. as a bitmask with the following bits:
  1979. 1 - do extra consistency checking
  1980. 2 - output messages for malloc/free calls and OS
  1981. allocation calls
  1982. 4 - output messages for the `MMB' layer
  1983. 8 - output messages for internal malloc heap manipulation
  1984. calls
  1985. Because this increases the size of malloc appreciably (due to strings
  1986. etc), you should say N unless you need to debug a malloc problem.
  1987. config UCLIBC_HAS_BACKTRACE
  1988. bool "Add support for application self-debugging"
  1989. depends on HAVE_SHARED
  1990. help
  1991. Answer Y here to compile support for application self-debugging, by adding
  1992. a new shared object "libubacktrace.so" that provides the following new
  1993. functions:
  1994. backtrace, backtrace_symbols, backtrace_symbols_fd
  1995. The backtrace functionality is currently supported on SH platform, and it
  1996. based on dwarf2 informations to properly work, so any application that
  1997. want to use backtrace needs to be built with -fexceptions flag.
  1998. The symbol names may be unavailable without the use of special linker
  1999. options. For systems using the GNU linker, it is necessary to use the
  2000. -rdynamic linker option too. Note that names of "static" functions are not
  2001. exposed, and won't be available in the backtrace.
  2002. config WARNINGS
  2003. string "Compiler Warnings"
  2004. default "-Wall"
  2005. help
  2006. Set this to the set of compiler warnings you wish to see while compiling.
  2007. config EXTRA_WARNINGS
  2008. bool "Enable extra annoying warnings"
  2009. help
  2010. If you wish to build with extra warnings enabled, say Y here.
  2011. config DOMULTI
  2012. bool "Compile all sources at once into an object"
  2013. help
  2014. Set this to compile all sources at once into an object (IMA).
  2015. This mode of compilation uses alot of memory but may produce
  2016. smaller binaries.
  2017. Note that you need a very recent GCC for this to work, like
  2018. gcc >= 4.3 plus eventually some patches.
  2019. If unsure, keep the default of N.
  2020. config UCLIBC_MJN3_ONLY
  2021. bool "Manuel's hidden warnings"
  2022. help
  2023. Answer Y here to see all Manuel's personal notes, warnings, and todos.
  2024. Most people will answer N.
  2025. endmenu