Config.in 69 KB

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