Config.in 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322
  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. choice
  7. prompt "Target Architecture"
  8. default TARGET_i386
  9. help
  10. Stuff
  11. config TARGET_alpha
  12. bool "alpha"
  13. config TARGET_arm
  14. bool "arm"
  15. config TARGET_bfin
  16. bool "bfin"
  17. config TARGET_cris
  18. bool "cris"
  19. config TARGET_e1
  20. bool "e1"
  21. config TARGET_frv
  22. bool "frv"
  23. config TARGET_h8300
  24. bool "h8300"
  25. config TARGET_i386
  26. bool "i386"
  27. config TARGET_i960
  28. bool "i960"
  29. config TARGET_m68k
  30. bool "m68k"
  31. config TARGET_microblaze
  32. bool "microblaze"
  33. config TARGET_mips
  34. bool "mips"
  35. config TARGET_nios
  36. bool "nios"
  37. config TARGET_nios2
  38. bool "nios2"
  39. config TARGET_powerpc
  40. bool "powerpc"
  41. config TARGET_sh
  42. bool "superh"
  43. config TARGET_sparc
  44. bool "sparc"
  45. config TARGET_v850
  46. bool "v850"
  47. config TARGET_x86_64
  48. bool "x86_64"
  49. endchoice
  50. menu "Target Architecture Features and Options"
  51. if TARGET_alpha
  52. source "extra/Configs/Config.alpha"
  53. endif
  54. if TARGET_arm
  55. source "extra/Configs/Config.arm"
  56. endif
  57. if TARGET_bfin
  58. source "extra/Configs/Config.bfin"
  59. endif
  60. if TARGET_cris
  61. source "extra/Configs/Config.cris"
  62. endif
  63. if TARGET_e1
  64. source "extra/Configs/Config.e1"
  65. endif
  66. if TARGET_frv
  67. source "extra/Configs/Config.frv"
  68. endif
  69. if TARGET_h8300
  70. source "extra/Configs/Config.h8300"
  71. endif
  72. if TARGET_i386
  73. source "extra/Configs/Config.i386"
  74. endif
  75. if TARGET_i960
  76. source "extra/Configs/Config.i960"
  77. endif
  78. if TARGET_m68k
  79. source "extra/Configs/Config.m68k"
  80. endif
  81. if TARGET_nios
  82. source "extra/Configs/Config.nios"
  83. endif
  84. if TARGET_nios2
  85. source "extra/Configs/Config.nios2"
  86. endif
  87. if TARGET_microblaze
  88. source "extra/Configs/Config.microblaze"
  89. endif
  90. if TARGET_mips
  91. source "extra/Configs/Config.mips"
  92. endif
  93. if TARGET_powerpc
  94. source "extra/Configs/Config.powerpc"
  95. endif
  96. if TARGET_sh
  97. source "extra/Configs/Config.sh"
  98. endif
  99. if TARGET_sparc
  100. source "extra/Configs/Config.sparc"
  101. endif
  102. if TARGET_v850
  103. source "extra/Configs/Config.v850"
  104. endif
  105. if TARGET_x86_64
  106. source "extra/Configs/Config.x86_64"
  107. endif
  108. source "extra/Configs/Config.in.arch"
  109. endmenu
  110. menu "General Library Settings"
  111. config HAVE_NO_PIC
  112. bool
  113. default n
  114. config DOPIC
  115. bool "Generate Position Independent Code (PIC)"
  116. default y
  117. depends !HAVE_NO_PIC
  118. help
  119. If you wish to build uClibc with support for shared libraries then
  120. answer Y here. If you only want to build uClibc as a static library,
  121. then answer N.
  122. config HAVE_NO_SHARED
  123. bool
  124. default n
  125. config HAVE_SHARED
  126. bool "Enable support for shared libraries"
  127. depends on DOPIC && !HAVE_NO_SHARED
  128. default y
  129. help
  130. If you wish to build uClibc with support for shared libraries then
  131. answer Y here. If you only want to build uClibc as a static library,
  132. then answer N.
  133. config ARCH_HAS_NO_LDSO
  134. bool
  135. default n
  136. config BUILD_UCLIBC_LDSO
  137. bool "Compile native shared library loader"
  138. depends on HAVE_SHARED && !ARCH_HAS_NO_LDSO
  139. default y
  140. help
  141. uClibc has a native shared library loader for some architectures.
  142. If you answer Y here, the uClibc native shared library loader will
  143. be built for your target architecture. If this option is available,
  144. to you, then you almost certainly want to answer Y.
  145. config FORCE_SHAREABLE_TEXT_SEGMENTS
  146. bool "Only load shared libraries which can share their text segment"
  147. depends on BUILD_UCLIBC_LDSO
  148. default n
  149. help
  150. If you answer Y here, the uClibc native shared library loader will
  151. only load shared libraries, which do not need to modify any non-writable
  152. segments. These libraries haven't set the DT_TEXTREL tag in the dynamic
  153. section (==> objdump). So all your libraries must be compiled with
  154. -fPIC or -fpic, and all assembler function must be written as position
  155. independent code (PIC).
  156. Enabling this option will makes uClibc's shared library loader a
  157. little bit smaller and guarantee that no memory will be wasted by badly
  158. coded shared libraries.
  159. config LDSO_LDD_SUPPORT
  160. bool "Native shared library loader 'ldd' support"
  161. depends on BUILD_UCLIBC_LDSO
  162. default y
  163. help
  164. Enable this to enable all the code needed to support traditional ldd,
  165. which executes the shared library loader to resolve all dependencies
  166. and then provide a list of shared libraries that are required for an
  167. application to function. Disabling this option will makes uClibc's
  168. shared library loader a little bit smaller. Most people will answer Y.
  169. config LDSO_CACHE_SUPPORT
  170. bool "Enable shared library loader cache"
  171. depends on BUILD_UCLIBC_LDSO
  172. default y
  173. help
  174. Enable this to make use of /etc/ld.so.conf, the shared library loader
  175. cache configuration file to support for non-standard library paths.
  176. After updating this file, it is necessary to run 'ldconfig' to update
  177. the /etc/ld.so.cache shared library loader cache file.
  178. config LDSO_PRELOAD_FILE_SUPPORT
  179. bool "Enable shared library loader preload file support"
  180. depends on BUILD_UCLIBC_LDSO
  181. default n
  182. help
  183. Enable this to make use of /etc/ld.so.preload. This file contains a
  184. whitespace separated list of shared libraries to be loaded before
  185. the program.
  186. config LDSO_BASE_FILENAME
  187. string "Shared library loader naming prefix"
  188. depends on LDSO_CACHE_SUPPORT || LDSO_PRELOAD_FILE_SUPPORT
  189. default "ld.so"
  190. help
  191. If you wish to support both uClibc and glibc on the same system, it
  192. is necessary to set this to something other than "ld.so" to avoid
  193. conflicts with glibc, which also uses "ld.so". This prevents both
  194. libraries from using the same /etc/ld.so.* files. If you wish to
  195. support both uClibc and glibc on the same system then you should set
  196. this to "ld-uClibc.so".
  197. Most people will leave this set to the default of "ld.so".
  198. WARNING: Changing the default prefix could cause problems with
  199. binutils' ld !
  200. config UCLIBC_CTOR_DTOR
  201. bool "Support global constructors and destructors"
  202. default y
  203. help
  204. If you wish to build uClibc with support for global constructor
  205. (ctor) and global destructor (dtor) support, then answer Y here.
  206. When ctor/dtor support is enabled, binaries linked with uClibc must
  207. also be linked with crtbegin.o and crtend.o which are provided by gcc
  208. (the "*startfile:" and "*endfile:" settings in your gcc specs file
  209. may need to be adjusted to include these files). This support will
  210. also add a small amount of additional size to each binary compiled vs
  211. uClibc. If you will be using uClibc with C++, or if you need the gcc
  212. __attribute__((constructor)) and __attribute__((destructor)) to work,
  213. then you definitely want to answer Y here. If you don't need ctors
  214. or dtors and want your binaries to be as small as possible, then
  215. answer N.
  216. config HAS_NO_THREADS
  217. bool
  218. default n
  219. config UCLIBC_HAS_THREADS
  220. bool "POSIX Threading Support"
  221. depends on !HAS_NO_THREADS
  222. default y
  223. help
  224. If you want to compile uClibc with pthread support, then answer Y.
  225. This will increase the size of uClibc by adding a bunch of locking
  226. to critical data structures, and adding extra code to ensure that
  227. functions are properly reentrant.
  228. If your applications require pthreads, answer Y.
  229. config PTHREADS_DEBUG_SUPPORT
  230. bool "Build pthreads debugging support"
  231. default n
  232. depends on UCLIBC_HAS_THREADS
  233. help
  234. Say Y here if you wish to be able to debug applications that use
  235. uClibc's pthreads library. By enabling this option, a library
  236. named libthread_db will be built. This library will be dlopen()'d
  237. by gdb and will allow gdb to debug the threads in your application.
  238. IMPORTANT NOTE! Because gdb must dlopen() the libthread_db library,
  239. you must compile gdb with uClibc in order for pthread debugging to
  240. work properly.
  241. If you are doing development and want to debug applications using
  242. uClibc's pthread library, answer Y. Otherwise, answer N.
  243. config UCLIBC_HAS_LFS
  244. bool "Large File Support"
  245. default y
  246. help
  247. If you wish to build uClibc with support for accessing large files
  248. (i.e. files greater then 2 GiB) then answer Y. Do not enable this
  249. if you are using an older Linux kernel (2.0.x) that lacks large file
  250. support. Enabling this option will increase the size of uClibc.
  251. config UCLIBC_STATIC_LDCONFIG
  252. bool "Link ldconfig statically"
  253. default y
  254. help
  255. Enable this option to statically link the ldconfig binary.
  256. Making ldconfig static can be beneficial if you have a library
  257. problem and need to use ldconfig to recover. Sometimes, it is
  258. preferable to instead keep the size of the system down, in which
  259. case you should disable this option.
  260. choice
  261. prompt "Malloc Implementation"
  262. default MALLOC if ! ARCH_HAS_MMU
  263. default MALLOC_STANDARD if ARCH_HAS_MMU
  264. help
  265. "malloc" use mmap for all allocations and so works very well on MMU-less
  266. systems that do not support the brk() system call. It is pretty smart
  267. about reusing already allocated memory, and minimizing memory wastage.
  268. This is the default for uClinux MMU-less systems.
  269. "malloc-simple" was written from scratch for uClibc, and is the
  270. simplest possible (and therefore smallest) malloc implementation.
  271. This uses only the mmap() system call to allocation memory, and does
  272. not use the brk() system call at all, making it a fine choice for
  273. MMU-less systems with very limited memory. It is rather dumb, and
  274. certainly isn't the fastest. But it is 100% standards compliant,
  275. thread safe, and very small.
  276. "malloc-standard" is derived from the public domain dlmalloc
  277. implementation by Doug Lea. It is quite fast, and is pretty smart
  278. about reusing already allocated memory, and minimizing memory
  279. wastage. This uses brk() for small allocations, while using mmap()
  280. for larger allocations. This is the default malloc implementation
  281. for uClibc.
  282. If unsure, answer "malloc-standard".
  283. config MALLOC
  284. bool "malloc"
  285. config MALLOC_SIMPLE
  286. bool "malloc-simple"
  287. config MALLOC_STANDARD
  288. bool "malloc-standard"
  289. depends on ARCH_HAS_MMU
  290. endchoice
  291. config MALLOC_GLIBC_COMPAT
  292. bool "Malloc returns live pointer for malloc(0)"
  293. default n
  294. help
  295. The behavior of malloc(0) is listed as implementation-defined by
  296. SuSv3. Glibc returns a valid pointer to something, while uClibc
  297. normally return a NULL. I personally feel glibc's behavior is
  298. not particularly safe, and allows buggy applications to hide very
  299. serious problems.
  300. When this option is enabled, uClibc will act just like glibc, and
  301. return a live pointer when someone calls malloc(0). This pointer
  302. provides a malloc'ed area with a size of 1 byte. This feature is
  303. mostly useful when dealing with applications using autoconf's broken
  304. AC_FUNC_MALLOC macro (which redefines malloc as rpl_malloc if it
  305. does not detect glibc style returning-a-valid-pointer-for-malloc(0)
  306. behavior). Most people can safely answer N.
  307. config UCLIBC_DYNAMIC_ATEXIT
  308. bool "Dynamic atexit() Support"
  309. default y
  310. help
  311. When this option is enabled, uClibc will support an infinite number,
  312. of atexit() and on_exit() functions, limited only by your available
  313. memory. This can be important when uClibc is used with C++, since
  314. global destructors are implemented via atexit(), and it is quite
  315. possible to exceed the default number when this option is disabled.
  316. Enabling this option adds a few bytes, and more significantly makes
  317. atexit and on_exit depend on malloc, which can be bad when compiling
  318. static executables.
  319. Unless you use uClibc with C++, you should probably answer N.
  320. config HAS_SHADOW
  321. bool "Shadow Password Support"
  322. default y
  323. help
  324. Answer N if you do not need shadow password support.
  325. Most people will answer Y.
  326. config UNIX98PTY_ONLY
  327. bool "Support only Unix 98 PTYs"
  328. default y
  329. help
  330. If you want to support only Unix 98 PTYs enable this. Some older
  331. applications may need this disabled. For most current programs,
  332. you can generally answer Y.
  333. config ASSUME_DEVPTS
  334. bool "Assume that /dev/pts is a devpts or devfs file system"
  335. default y
  336. help
  337. Enable this if /dev/pts is on a devpts or devfs filesystem. Both
  338. these filesystems automatically manage permissions on the /dev/pts
  339. devices. You may need to mount your devpts or devfs filesystem on
  340. /dev/pts for this to work.
  341. Most people should answer Y.
  342. config UCLIBC_HAS_TM_EXTENSIONS
  343. bool "Support 'struct tm' timezone extension fields"
  344. default y
  345. help
  346. Enabling this option adds fields to 'struct tm' in time.h for
  347. tracking the number of seconds east of UTC, and an abbreviation for
  348. the current timezone. These fields are not specified by the SuSv3
  349. standard, but they are commonly used in both GNU and BSD application
  350. code.
  351. To strictly follow the SuSv3 standard, leave this disabled.
  352. Most people will probably want to answer Y.
  353. config UCLIBC_HAS_TZ_CACHING
  354. bool "Enable caching of the last valid timezone 'TZ' string"
  355. default y
  356. help
  357. Answer Y to enable caching of the last valid 'TZ' string describing
  358. the timezone setting. This allows a quick string compare to avoid
  359. repeated parsing of unchanged 'TZ' strings when tzset() is called.
  360. Most people will answer Y.
  361. config UCLIBC_HAS_TZ_FILE
  362. bool "Enable '/etc/TZ' file support to set a default timezone (uClibc-specific)"
  363. default y
  364. help
  365. Answer Y to enable the setting of a default timezone for uClibc.
  366. Ordinarily, uClibc gets the timezone information exclusively from the
  367. 'TZ' environment variable. In particular, there is no support for
  368. the zoneinfo directory tree or the /etc/timezone file used by glibc.
  369. With this option enabled, uClibc will use the value stored in the
  370. file '/etc/TZ' (default path) to obtain timezone information if the
  371. 'TZ' environment variable is missing or has an invalid value. The
  372. file consists of a single line (newline required) of text describing
  373. the timezone in the format specified for the TZ environment variable.
  374. Simply doing 'echo CST6CDT > /etc/TZ' is enough to create a valid file.
  375. See
  376. http://www.opengroup.org/onlinepubs/007904975/basedefs/xbd_chap08.html
  377. for details on valid settings of 'TZ'.
  378. Most people will answer Y.
  379. config UCLIBC_HAS_TZ_FILE_READ_MANY
  380. bool "Repeatedly read the '/etc/TZ' file"
  381. depends on UCLIBC_HAS_TZ_FILE
  382. default y
  383. help
  384. Answer Y to enable repeated reading of the '/etc/TZ' file even after
  385. a valid value has been read. This incurs the overhead of an open/read/close
  386. for each tzset() call (explicit or implied). However, setting this
  387. will allows applications to update their timezone information if the contents
  388. of the file change.
  389. Most people will answer Y.
  390. config UCLIBC_TZ_FILE_PATH
  391. string "Path to the 'TZ' file for setting the global timezone"
  392. depends on UCLIBC_HAS_TZ_FILE
  393. default "/etc/TZ"
  394. help
  395. This is the path to the 'TZ' file.
  396. Most people will use the default of '/etc/TZ'.
  397. endmenu
  398. menu "Networking Support"
  399. config UCLIBC_HAS_IPV6
  400. bool "IP version 6 Support"
  401. default n
  402. help
  403. If you want to include support for the next version of the Internet
  404. Protocol (IP version 6) then answer Y.
  405. Most people should answer N.
  406. config UCLIBC_HAS_RPC
  407. bool "Remote Procedure Call (RPC) support"
  408. default n
  409. help
  410. If you want to include RPC support, enable this. RPC is rarely used
  411. for anything except for the NFS filesystem. Unless you plan to use NFS,
  412. you can probably leave this set to N and save some space. If you need
  413. to use NFS then you should answer Y.
  414. config UCLIBC_HAS_FULL_RPC
  415. bool "Full RPC support"
  416. depends on UCLIBC_HAS_RPC
  417. default y if !HAVE_SHARED
  418. help
  419. Normally we enable just enough RPC support for things like rshd and
  420. nfs mounts to work. If you find you need the rest of the RPC stuff,
  421. then enable this option. Most people can safely answer N.
  422. endmenu
  423. menu "String and Stdio Support"
  424. config UCLIBC_HAS_STRING_GENERIC_OPT
  425. bool "Use glibc generic string functions"
  426. default y
  427. help
  428. Answer Y to use the (tweaked) glibc generic string functions.
  429. In general, they are faster (but 3-5K larger) than the base
  430. uClibc string functions which are optimized solely for size.
  431. Many people will answer Y.
  432. config UCLIBC_HAS_STRING_ARCH_OPT
  433. bool "Use arch-specific string functions"
  434. default y
  435. help
  436. Answer Y to use the arch-specific string functions instead of the
  437. base uClibc versions, which are optimized exclusively for size.
  438. Most people will answer Y, as this has been default behavior
  439. for some time.
  440. config UCLIBC_HAS_CTYPE_TABLES
  441. bool "Use Table Versions Of 'ctype.h' Functions."
  442. default y
  443. help
  444. Answer Y to use table versions of the 'ctype.h' functions.
  445. While the non-table versions are often smaller when building
  446. staticly linked apps, they work only in stub locale mode.
  447. Most people will answer Y.
  448. config UCLIBC_HAS_CTYPE_SIGNED
  449. bool "Support Signed Characters In 'ctype.h' Functions."
  450. depends UCLIBC_HAS_CTYPE_TABLES
  451. default y
  452. help
  453. Answer Y to enable support for passing signed char values to
  454. the 'ctype.h' functions. ANSI/ISO C99 and SUSv3 specify that
  455. these functions are only defined for unsigned char values and
  456. EOF. However, glibc allows negative signed char values as well
  457. in order to support 'broken old programs'.
  458. Most people will answer Y.
  459. choice
  460. prompt "ctype argument checking"
  461. depends UCLIBC_HAS_CTYPE_TABLES
  462. default UCLIBC_HAS_CTYPE_UNSAFE
  463. help
  464. Please select the invalid arg behavior you want for the 'ctype' functions.
  465. The 'ctype' functions are now implemented using table lookups, with
  466. the arg being the index. This can result in incorrect memory accesses
  467. or even segfaults for args outside of the allowed range.
  468. NOTE: This only affects the 'ctype' _functions_. It does not affect
  469. the macro implementations.
  470. config UCLIBC_HAS_CTYPE_UNSAFE
  471. bool "Do not check -- unsafe"
  472. config UCLIBC_HAS_CTYPE_CHECKED
  473. bool "Detect and handle appropriately"
  474. config UCLIBC_HAS_CTYPE_ENFORCED
  475. bool "Issue a diagnostic and abort()"
  476. endchoice
  477. config UCLIBC_HAS_WCHAR
  478. bool "Wide Character Support"
  479. default n
  480. help
  481. Answer Y to enable wide character support. This will make uClibc
  482. much larger. It is also currently required for locale support.
  483. Most people will answer N.
  484. config UCLIBC_HAS_LOCALE
  485. bool "Locale Support"
  486. select UCLIBC_HAS_WCHAR
  487. select UCLIBC_HAS_CTYPE_TABLES
  488. default n
  489. help
  490. uClibc now has full ANSI/ISO C99 locale support (except for
  491. wcsftime() and collating items in regex). Be aware that enabling
  492. this option will make uClibc much larger.
  493. Enabling UCLIBC_HAS_LOCALE with the default set of supported locales
  494. (169 UTF-8 locales, and 144 locales for other codesets) will enlarge
  495. uClibc by around 300k. You can reduce this size by building your own
  496. custom set of locate data (see extra/locale/LOCALES for details).
  497. uClibc's locale support is still under development. For example,
  498. codesets using shift states are not currently supported. Support is
  499. planned in the next iteration of locale support.
  500. Answer Y to enable locale support. Most people will answer N.
  501. config UCLIBC_PREGENERATED_LOCALE_DATA
  502. bool "Use Pre-generated Locale Data"
  503. depends on UCLIBC_HAS_LOCALE
  504. default n
  505. help
  506. If you are selective and only want locale data for a few particular
  507. locales, or you enjoy pain, or you are a rabid do-it-yourself sort of
  508. person, you can turn this option off and manually walk through the
  509. mostly undocumented procedure needed to generate your own locale
  510. data.
  511. Mere mortals will answer Y and use the default set of pregenerated
  512. locale data, which supports 169 UTF-8 locales, and 144 locales for
  513. other codesets (for the complete list see extra/locale/LOCALES).
  514. config UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA
  515. bool "Automagically Download the Pre-generated Locale Data (if necessary)"
  516. depends on UCLIBC_PREGENERATED_LOCALE_DATA
  517. default n
  518. help
  519. If you would like the build process to use 'wget' to automatically
  520. download the pregenerated locale data, enable this option. Otherwise
  521. you will need to obtain the locale data yourself from:
  522. http://www.uclibc.org/downloads/uClibc-locale-030818.tgz
  523. and place the uClibc-locale-030818.tgz tarball in the extra/locale/
  524. directory.
  525. Go ahead and make life easy for yourself... Answer Y.
  526. config UCLIBC_HAS_XLOCALE
  527. bool "Extended Locale Support (experimental/incomplete)"
  528. depends on UCLIBC_HAS_LOCALE
  529. default n
  530. help
  531. Answer Y to enable extended locale support similar to that provided
  532. by glibc. This is primarily intended to support libstd++ functionality.
  533. However, it also allows thread-specific locale selection via uselocale().
  534. Most people will answer N.
  535. config UCLIBC_HAS_HEXADECIMAL_FLOATS
  536. bool "Support hexadecimal float notation"
  537. depends UCLIBC_HAS_CTYPE_TABLES
  538. depends on UCLIBC_HAS_FLOATS
  539. default n
  540. help
  541. Answer Y to enable support for hexadecimal float notation in the
  542. (wchar and) char string to floating point conversion functions, as
  543. well as support for the %a and %A conversion specifiers in the
  544. *printf() and *scanf() functions.
  545. Most people will answer N.
  546. config UCLIBC_HAS_GLIBC_DIGIT_GROUPING
  547. bool "Support glibc's \"'\" flag for allowing locale-specific digit grouping"
  548. depends on UCLIBC_HAS_LOCALE
  549. depends on UCLIBC_HAS_FLOATS
  550. default n
  551. help
  552. Answer Y to enable support for glibc's \"'\" flag for allowing locale-specific
  553. digit grouping in base 10 integer conversions and appropriate floating point
  554. conversions in the *printf() and *scanf() functions.
  555. Most people will answer N.
  556. config UCLIBC_HAS_SCANF_LENIENT_DIGIT_GROUPING
  557. bool "Do not require digit grouping when the \"'\" flag is specified"
  558. depends on UCLIBC_HAS_GLIBC_DIGIT_GROUPING
  559. default y
  560. help
  561. Answer Y to make digit grouping optional when the \"'\" flag is specified.
  562. This is the standard glibc behavior. If the initial string of digits
  563. exceeds the maximum group number, the input will be treated as a normal
  564. non-grouped number.
  565. Most people will answer N.
  566. config UCLIBC_HAS_GLIBC_CUSTOM_PRINTF
  567. bool "Support glibc's register_printf_function() (glibc-compat)"
  568. depends on !USE_OLD_VFPRINTF
  569. default n
  570. help
  571. Answer Y to support glibc's register_printf_function() to allow an
  572. application to add its own printf conversion specifiers.
  573. NOTE: This implementation limits the number or registered specifiers to 10.
  574. NOTE: This implementation requires new conversion specifiers to be ASCII
  575. characters (0-0x7f). This is to avoid problems with processing
  576. format strings in locales with different multibyte conversions.
  577. Most people will answer N.
  578. config USE_OLD_VFPRINTF
  579. bool "Use the old vfprintf implementation"
  580. depends on !UCLIBC_HAS_WCHAR
  581. default n
  582. help
  583. Set to true to use the old vfprintf instead of the new. This is roughly
  584. C89 compliant with some extensions, and is much smaller. However, it does
  585. not support wide chars, positional args, or glibc custom printf specifiers.
  586. Most people will answer N.
  587. config UCLIBC_PRINTF_SCANF_POSITIONAL_ARGS
  588. int "Maximum number of positional args. Either 0 or >= 9."
  589. depends on !USE_OLD_VFPRINTF
  590. default 9
  591. help
  592. Set the maximum number of positional args supported by the printf/scanf
  593. functions. The Single Unix Specification Version 3 requires a minimum
  594. value of 9. Setting this to a value lower than 9 will disable positional
  595. arg support and cause the NL_ARGMAX macro in limits.h to be #undef'd.
  596. WARNING! The workspace to support positional args is currently allocated
  597. on the stack. You probably don't want to set this to too high a value.
  598. Most people will answer 9.
  599. config UCLIBC_HAS_SCANF_GLIBC_A_FLAG
  600. bool "Support glibc's 'a' flag for scanf string conversions"
  601. default n
  602. help
  603. NOTE!!! Currently Not Implemented!!! Just A Place Holder!! NOTE!!!
  604. Answer Y to enable support for glibc's 'a' flag for the scanf string
  605. conversions '%s', '%[', '%ls', '%l[', and '%S'. This is used to
  606. auto-allocate sufficient memory to hold the data retrieved.
  607. Most people will answer N.
  608. choice
  609. prompt "Stdio buffer size"
  610. default UCLIBC_HAS_STDIO_BUFSIZ_4096
  611. help
  612. Please select a value for BUFSIZ. This will be used by the
  613. stdio subsystem as the default buffer size for a file, and
  614. affects fopen(), setvbuf(), etc.
  615. NOTE: Setting this to 'none' will disable buffering completely.
  616. However, BUFSIZ will still be defined in stdio.h as 256 because
  617. many applications use this value.
  618. config UCLIBC_HAS_STDIO_BUFSIZ_NONE
  619. bool "none (WARNING - BUFSIZ will be 256 in stdio.h)"
  620. depends !UCLIBC_HAS_WCHAR
  621. config UCLIBC_HAS_STDIO_BUFSIZ_256
  622. bool "256 (minimum ANSI/ISO C99 value)"
  623. config UCLIBC_HAS_STDIO_BUFSIZ_512
  624. bool "512"
  625. config UCLIBC_HAS_STDIO_BUFSIZ_1024
  626. bool "1024"
  627. config UCLIBC_HAS_STDIO_BUFSIZ_2048
  628. bool "2048"
  629. config UCLIBC_HAS_STDIO_BUFSIZ_4096
  630. bool "4096"
  631. config UCLIBC_HAS_STDIO_BUFSIZ_8192
  632. bool "8192"
  633. # If you add more choices, you will need to update uClibc_stdio.h.
  634. endchoice
  635. choice
  636. prompt "Stdio builtin buffer size (uClibc-specific)"
  637. depends !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  638. default UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE
  639. help
  640. When a FILE is created with fopen(), an attempt is made to allocate
  641. a BUFSIZ buffer for it. If the allocation fails, fopen() will still
  642. succeed but the FILE will be unbuffered.
  643. This option adds a small amount of space to each FILE to act as an
  644. emergency buffer in the event of a buffer allocation failure.
  645. Most people will answer None.
  646. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE
  647. bool "None"
  648. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_4
  649. bool "4"
  650. config UCLIBC_HAS_STDIO_BUILTIN_BUFFER_8
  651. bool "8"
  652. # If you add more choices, you will need to update uClibc_stdio.h.
  653. endchoice
  654. config UCLIBC_HAS_STDIO_GETC_MACRO
  655. bool "Provide a macro version of getc()"
  656. depends !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  657. default y
  658. help
  659. Provide a macro version of getc().
  660. Most people will answer Y.
  661. config UCLIBC_HAS_STDIO_PUTC_MACRO
  662. bool "Provide a macro version of putc()"
  663. depends !UCLIBC_HAS_STDIO_BUFSIZ_NONE
  664. default y
  665. help
  666. Provide a macro version of putc().
  667. Most people will answer Y.
  668. config UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION
  669. bool "Support auto-r/w transition"
  670. default y
  671. help
  672. Answer Y to enable the stdio subsystem to automaticly transition
  673. between reading and writing. This relaxes the ANSI/ISO C99 requirement:
  674. When a file is opened with update mode ('+' as the second or third character
  675. in the list of mode argument values), both input and output may be performed
  676. on the associated stream. However, output shall not be directly followed by
  677. input without an intervening call to the fflush function or to a file
  678. positioning function (fseek, fsetpos, or rewind), and input shall not be
  679. directly followed by output without an intervening call to a file positioning
  680. function, unless the input operation encounters end­of­file.
  681. Most people will answer Y.
  682. config UCLIBC_HAS_FOPEN_LARGEFILE_MODE
  683. bool "Support an fopen() 'F' flag for large file mode (uClibc-specific)"
  684. depends on UCLIBC_HAS_LFS
  685. default n
  686. help
  687. Answer Y to enable a uClibc-specific extension to allow passing an
  688. additional 'F' flag in the mode string for fopen() to specify that
  689. the file should be open()ed with the O_LARGEFILE flag set.
  690. Most people will answer N.
  691. config UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE
  692. bool "Support an fopen() 'x' flag for exclusive mode (glibc-compat)"
  693. default n
  694. help
  695. Answer Y to support a glibc extension to allow passing
  696. additional 'x' flag in the mode string for fopen() to specify that
  697. the file should be open()ed with the O_EXCL flag set.
  698. Most people will answer N.
  699. config UCLIBC_HAS_GLIBC_CUSTOM_STREAMS
  700. bool "Support fmemopen(), open_memstream(), and fopencookie() (glibc-compat)"
  701. default n
  702. help
  703. Answer Y to support the glibc 'custom stream' extension functions
  704. fmemopen(), open_memstream(), and fopencookie().
  705. NOTE: There are some minor differences regarding seeking behavior.
  706. Most people will answer N.
  707. config UCLIBC_HAS_PRINTF_M_SPEC
  708. bool "Support the '%m' specifier in printf format strings (glibc-compat)"
  709. default n
  710. help
  711. Answer Y to support a glibc extension to interpret '%m' in printf
  712. format strings as an instruction to output the error message string
  713. (as generated by strerror) corresponding to the current value of 'errno'.
  714. Most people will answer N.
  715. config UCLIBC_HAS_ERRNO_MESSAGES
  716. bool "Include the errno message text in the library"
  717. default y
  718. help
  719. Answer Y if you want to include the errno message text in the
  720. library. This adds about 3K to the library, but enables strerror()
  721. to generate text other than 'Unknown error <number>'.
  722. Most people will answer Y.
  723. config UCLIBC_HAS_SYS_ERRLIST
  724. bool "Support sys_errlist[] (obsolete-compat)"
  725. depends on UCLIBC_HAS_ERRNO_MESSAGES
  726. default n
  727. help
  728. Answer Y if you want to support the obsolete sys_errlist[].
  729. This adds about 0.5k to the library, except for the mips
  730. arch where it adds over 4K.
  731. WARNING! In the future, support for sys_errlist[] may be unavailable
  732. in at least some configurations. In fact, it may be removed altogether.
  733. Most people will answer N.
  734. config UCLIBC_HAS_SIGNUM_MESSAGES
  735. bool "Include the signum message text in the library"
  736. default y
  737. help
  738. Answer Y if you want to include the signum message text in the
  739. library. This adds about 0.5K to the library, but enables strsignal()
  740. to generate text other than 'Unknown signal <number>'.
  741. Most people will answer Y.
  742. config UCLIBC_HAS_SYS_SIGLIST
  743. bool "Support sys_siglist[] (bsd-compat)"
  744. depends on UCLIBC_HAS_SIGNUM_MESSAGES
  745. default n
  746. help
  747. Answer Y if you want to support sys_siglist[].
  748. WARNING! In the future, support for sys_siglist[] may be unavailable
  749. in at least some configurations. In fact, it may be removed altogether.
  750. Most people will answer N.
  751. config UCLIBC_HAS_GETTEXT_AWARENESS
  752. bool "Include gettext awareness"
  753. depends on UCLIBC_HAS_LOCALE && UCLIBC_MJN3_ONLY
  754. default n
  755. help
  756. NOTE!!! Not yet integrated with strerror and strsignal. NOTE!!!
  757. Answer Y if you want to include weak stub gettext support and
  758. make the *strerror*() and strsignal() functions gettext-aware.
  759. Currently, to get functional gettext functionality you will need
  760. to use gnu gettext.
  761. Most people will answer N.
  762. config UCLIBC_HAS_GNU_GETOPT
  763. bool "Support gnu getopt"
  764. default y
  765. help
  766. Answer Y if you want to include full gnu getopt() instead of a
  767. (much smaller) SUSv3 compatible getopt().
  768. Most people will answer Y.
  769. endmenu
  770. menu "Big and Tall"
  771. config UCLIBC_HAS_REGEX
  772. bool "Regular Expression Support"
  773. default y
  774. help
  775. POSIX regular expression code is really big -- 27k all by itself.
  776. If you don't use regular expressions, turn this off and save space.
  777. Of course, if you only staticly link, leave this on, since it will
  778. only be included in your apps if you use regular expressions.
  779. config UCLIBC_HAS_WORDEXP
  780. bool "Support the wordexp() interface"
  781. default n
  782. help
  783. The SuSv3 wordexp() interface performs word expansions per the Shell
  784. and Utilities volume of IEEE Std 1003.1-2001, Section 2.6. It is
  785. intended for use by applications that want to implement all of the
  786. standard Bourne shell expansions on input data.
  787. This interface is rarely used, and very large. Unless you have a
  788. pressing need for wordexp(), you should probably answer N.
  789. config UCLIBC_HAS_FTW
  790. bool "Support the ftw() and nftw() interfaces"
  791. default n
  792. help
  793. The SuSv3 ftw() and nftw() interfaces are used to recursively descend
  794. directory paths while repeatedly calling a function.
  795. This interface is rarely used, and adds around 4.5k. Unless you have
  796. a pressing need for ftw() or nftw(), you should probably answer N.
  797. config UCLIBC_HAS_GLOB
  798. bool "Support the glob() interface"
  799. default y
  800. help
  801. The glob interface is somewhat large (weighing in at about 4k). It
  802. is used fairly often, but is an option since people wanting to go for
  803. absolute minimum size may wish to omit it.
  804. Most people will answer Y.
  805. endmenu
  806. menu "Library Installation Options"
  807. config SHARED_LIB_LOADER_PREFIX
  808. string "Shared library loader path"
  809. depends on BUILD_UCLIBC_LDSO
  810. default "$(DEVEL_PREFIX)/lib"
  811. help
  812. When using shared libraries, this path is the location where the
  813. shared library will be invoked. This value will be compiled into
  814. every binary compiled with uClibc.
  815. For a typical target system this should be set to "/lib", such that
  816. 'make install' will install /lib/ld-uClibc.so.0.
  817. BIG FAT WARNING:
  818. If you do not have a shared library loader with the correct name
  819. sitting in the directory this points to, your binaries will not
  820. run.
  821. config SYSTEM_LDSO
  822. string "System shared library loader"
  823. depends on HAVE_SHARED && !BUILD_UCLIBC_LDSO
  824. default "/lib/ld-linux.so.2"
  825. help
  826. If you are using shared libraries, but do not want/have a native
  827. uClibc shared library loader, please specify the name of your
  828. target system's shared library loader here...
  829. BIG FAT WARNING:
  830. If you do not have a shared library loader with the correct name
  831. sitting in the directory this points to, your binaries will not
  832. run.
  833. config RUNTIME_PREFIX
  834. string "uClibc runtime library directory"
  835. default "/usr/$(TARGET_ARCH)-linux-uclibc/"
  836. help
  837. RUNTIME_PREFIX is the directory into which the uClibc runtime
  838. libraries will be installed. The result will look something
  839. like the following:
  840. $(RUNTIME_PREFIX)/
  841. lib/ <contains all runtime libraries>
  842. usr/bin/ldd <the ldd utility program>
  843. sbin/ldconfig <the ldconfig utility program>
  844. This value is used by the 'make install' Makefile target. Since this
  845. directory is compiled into the shared library loader, you will need to
  846. recompile uClibc if you change this value...
  847. For a typical target system this should be set to "/", such that
  848. 'make install' will install /lib/libuClibc-<VERSION>.so
  849. config DEVEL_PREFIX
  850. string "uClibc development environment directory"
  851. default "/usr/$(TARGET_ARCH)-linux-uclibc/usr/"
  852. help
  853. DEVEL_PREFIX is the directory into which the uClibc development
  854. environment will be installed. The result will look something
  855. like the following:
  856. $(DEVEL_PREFIX)/
  857. lib/ <contains static libs>
  858. include/ <Where all the header files go>
  859. This value is used by the 'make install' Makefile target when
  860. installing a uClibc development environment.
  861. For a typical target system this should be set to "/usr", such that
  862. 'make install' will install /usr/include/<header files>.
  863. endmenu
  864. menu "uClibc security related options"
  865. config UCLIBC_SECURITY
  866. bool "Enable security options"
  867. default n
  868. config UCLIBC_BUILD_PIE
  869. bool "Build utilities as ET_DYN/PIE executables"
  870. depends on UCLIBC_SECURITY
  871. depends on HAVE_SHARED
  872. depends on TARGET_i386 || TARGET_powerpc || TARGET_mips || TARGET_frv
  873. select FORCE_SHAREABLE_TEXT_SEGMENTS if BUILD_UCLIBC_LDSO
  874. default y
  875. help
  876. If you answer Y here, ldd and iconv are built as ET_DYN/PIE executables.
  877. It requires gcc-3.4 and binutils-2.15 or later.
  878. More about ET_DYN/PIE binaries on <http://pax.grsecurity.net/> .
  879. WARNING: This option also enables FORCE_SHAREABLE_TEXT_SEGMENTS, so all
  880. libraries have to be built with -fPIC or -fpic, and all assembler
  881. functions must be written as position independent code (PIC).
  882. config UCLIBC_HAS_SSP
  883. bool "Support for propolice smashing stack protector"
  884. depends on UCLIBC_SECURITY
  885. default n
  886. help
  887. Add propolice smashing stack protector to the library.
  888. This requires a patched version of GCC, supporting the
  889. -fstack-protector[-all] options, with the __guard and
  890. __stack_smash_handler functions removed from libgcc.
  891. These functions are added to libc instead.
  892. More information at:
  893. <http://www.research.ibm.com/trl/projects/security/ssp/>
  894. Most people will answer N.
  895. config SSP_QUICK_CANARY
  896. bool "Use simple guard values without accessing /dev/urandom"
  897. depends on UCLIBC_HAS_SSP
  898. default n
  899. help
  900. Use gettimeofday(2) to define the __guard without accessing
  901. /dev/urandom.
  902. WARNING: This makes smashing stack protector vulnerable to timing
  903. attacks.
  904. Most people will answer N.
  905. config SSP_USE_ERANDOM
  906. bool "Use erandom for setting guard value if /dev/urandom fails"
  907. depends on UCLIBC_HAS_SSP && !SSP_QUICK_CANARY
  908. default n
  909. help
  910. Use /dev/erandom to define the guard if /dev/urandom fails (chroot).
  911. This requires a modified kernel.
  912. More information at:
  913. <http://frandom.sourceforge.net/>
  914. Most people will answer N.
  915. choice
  916. prompt "Propolice protection blocking signal"
  917. depends on UCLIBC_HAS_SSP
  918. default PROPOLICE_BLOCK_ABRT if ! DODEBUG
  919. default PROPOLICE_BLOCK_SEGV if DODEBUG
  920. help
  921. "abort" use SIGABRT to block offending programs.
  922. This is the default implementation.
  923. "segfault" use SIGSEGV to block offending programs.
  924. Use this for debugging.
  925. "kill" use SIGKILL to block offending programs.
  926. Perhaps the best for security.
  927. If unsure, answer "abort".
  928. config PROPOLICE_BLOCK_ABRT
  929. bool "abort"
  930. config PROPOLICE_BLOCK_SEGV
  931. bool "segfault"
  932. config PROPOLICE_BLOCK_KILL
  933. bool "kill"
  934. endchoice
  935. config UCLIBC_BUILD_SSP
  936. bool "Build uClibc with propolice protection"
  937. depends on UCLIBC_HAS_SSP
  938. default n
  939. help
  940. Build all libraries and executables with propolice protection enabled.
  941. config UCLIBC_BUILD_RELRO
  942. bool "Build uClibc with RELRO"
  943. depends on UCLIBC_SECURITY
  944. depends on BUILD_UCLIBC_LDSO
  945. default y
  946. help
  947. Build all libraries and executables with -z relro.
  948. config UCLIBC_BUILD_NOW
  949. bool "Build uClibc with NOW"
  950. depends on UCLIBC_SECURITY
  951. depends on BUILD_UCLIBC_LDSO
  952. default y
  953. help
  954. Build all libraries and executables with -z now.
  955. config UCLIBC_BUILD_NOEXECSTACK
  956. bool "Build uClibc with noexecstack marking"
  957. depends on UCLIBC_SECURITY
  958. default y
  959. help
  960. Mark all assembler files as noexecstack. This will result in marking
  961. all libraries and executables built against uClibc not requiring
  962. executable stack.
  963. endmenu
  964. menu "uClibc development/debugging options"
  965. config CROSS_COMPILE
  966. string "Cross-compiling toolchain prefix"
  967. default ""
  968. help
  969. The prefix used to execute your cross-compiling toolchain. For
  970. example, if you run 'arm-linux-uclibc-gcc' to compile something,
  971. then enter 'arm-linux-uclibc-' here.
  972. config DODEBUG
  973. bool "Build uClibc with debugging symbols"
  974. default n
  975. help
  976. Say Y here if you wish to compile uClibc with debugging symbols.
  977. This will allow you to use a debugger to examine uClibc internals
  978. while applications are running. This increases the size of the
  979. library considerably and should only be used when doing development.
  980. If you are doing development and want to debug uClibc, answer Y.
  981. Otherwise, answer N.
  982. config DOASSERTS
  983. bool "Build uClibc with run-time assertion testing"
  984. default n
  985. help
  986. Say Y here to include runtime assertion tests.
  987. This enables runtime assertion testing in some code, which can
  988. increase the size of the library and incur runtime overhead.
  989. If you say N, then this testing will be disabled.
  990. config SUPPORT_LD_DEBUG
  991. bool "Build the shared library loader with debugging support"
  992. depends on BUILD_UCLIBC_LDSO
  993. default n
  994. help
  995. Answer Y here to enable all the extra code needed to debug the uClibc
  996. native shared library loader. The level of debugging noise that is
  997. generated depends on the LD_DEBUG environment variable... Just set
  998. LD_DEBUG to something like: 'LD_DEBUG=token1,token2,.. prog' to
  999. debug your application. Diagnostic messages will then be printed to
  1000. the stderr.
  1001. For now these debugging tokens are available:
  1002. detail provide more information for some options
  1003. move display copy processing
  1004. symbols display symbol table processing
  1005. reloc display relocation processing; detail shows the relocation patch
  1006. nofixups never fixes up jump relocations
  1007. bindings displays the resolve processing (function calls); detail shows the relocation patch
  1008. all Enable everything!
  1009. The additional environment variable:
  1010. LD_DEBUG_OUTPUT=file
  1011. redirects the diagnostics to an output file created using
  1012. the specified name and the process id as a suffix.
  1013. An excellent start is simply:
  1014. $ LD_DEBUG=binding,move,symbols,reloc,detail ./appname
  1015. or to log everything to a file named 'logfile', try this
  1016. $ LD_DEBUG=all LD_DEBUG_OUTPUT=logfile ./appname
  1017. If you are doing development and want to debug uClibc's shared library
  1018. loader, answer Y. Mere mortals answer N.
  1019. config SUPPORT_LD_DEBUG_EARLY
  1020. bool "Build the shared library loader with early debugging support"
  1021. depends on BUILD_UCLIBC_LDSO
  1022. default n
  1023. help
  1024. Answer Y here to if you find the uClibc shared library loader is
  1025. crashing or otherwise not working very early on. This is typical
  1026. only when starting a new port when you haven't figured out how to
  1027. properly get the values for argc, argv, environ, etc. This method
  1028. allows a degree of visibility into the very early shared library
  1029. loader initialization process. If you are doing development and want
  1030. to debug the uClibc shared library loader early initialization,
  1031. answer Y. Mere mortals answer N.
  1032. config UCLIBC_MALLOC_DEBUGGING
  1033. bool "Build malloc with debugging support"
  1034. depends MALLOC
  1035. default n
  1036. help
  1037. Answer Y here to compile extra debugging support code into malloc.
  1038. Malloc debugging output may then be enabled at runtime using the
  1039. MALLOC_DEBUG environment variable.
  1040. The value of MALLOC_DEBUG should be an integer, which is interpreted as
  1041. a bitmask with the following bits:
  1042. 1 - do extra consistency checking
  1043. 2 - output messages for malloc/free calls and OS allocation calls
  1044. 4 - output messages for the `MMB' layer
  1045. 8 - output messages for internal malloc heap manipulation calls
  1046. Because this increases the size of malloc appreciably (due to strings
  1047. etc), you should say N unless you need to debug a malloc problem.
  1048. config UCLIBC_MJN3_ONLY
  1049. bool "Manuel's hidden warnings"
  1050. default n
  1051. help
  1052. Answer Y here to see all Manuel's personal notes, warnings, and todos.
  1053. Most people will answer N.
  1054. endmenu