Config.in 73 KB

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