TODO 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. TODO list for every uClibc release:
  2. -------------------------------------------------
  3. *) Audit header files. Remove prototypes for all functions that
  4. are not supported -- especially needed for the libm headers.
  5. *) Audit header files. When options are disabled, also disable
  6. them in the include files as well by checking for the proper
  7. define from include/bits/uClibc_config.h (pulled in from features.h)
  8. *) Test cris, i386, mips, mipsel, sh, x86_64, arm, armeb, and powerpc
  9. with the latest LTP testsuite. Fix any regressions and post LTP
  10. testsuite results for each architecture on uclibc.org.
  11. *) Fix it so valgrind 2.4.0 no longer complains about the memory mmaped
  12. and used by ldso. Currently it whines on basically about virtually
  13. every function call when doing default lazy binding, which makes its
  14. output virtually useless due to the excess noise.
  15. TODO list for the uClibc 0.9.29 release:
  16. -------------------------------------------------
  17. *) misc stdio bugs:
  18. http://bugs.uclibc.org/view.php?id=420
  19. http://bugs.uclibc.org/view.php?id=539
  20. *) bug in getopt handling:
  21. http://bugs.uclibc.org/view.php?id=61
  22. http://www.uclibc.org/lists/uclibc/2006-January/013851.html
  23. *) fold NPTL branch back into trunk
  24. *) as many of the arch-specific issues as possible
  25. TODO list for the uClibc 1.0.0 release:
  26. -------------------------------------------------
  27. *) glob / fnmatch tests fail
  28. *) regex should pass AT&T conformance tests
  29. *) Finish hiding uClibc internal symbols from our exported namespace.
  30. *) Explicity add some sortof CONFIG_LINUX_2_2_ABI, CONFIG_LINUX_2_4_ABI
  31. and CONFIG_LINUX_2_6_ABI type options, rather than having the abi
  32. depend on the selected set of kernel headers. This will likely also
  33. require that we provide a set of kernel headers (probably a derivitive
  34. of Mazur's linux-libc-headers) that can supplies the 2.2, 2.4, and 2.6
  35. kernel abi.
  36. *) Documentation updates:
  37. *) Write a uClibc HOWTO document
  38. *) Update README document
  39. *) Update INSTALL document
  40. *) Update docs/Glibc_vs_uClibc_Differences.txt document
  41. and fully document all differences between the feature
  42. set of uClibc and glibc.
  43. *) Update docs/uClibc_vs_SuSv3.txt document
  44. *) Update docs/threads.txt document
  45. *) Write man pages for ldd and ldconfig utility binaries
  46. *) Implement some mechanism (perhaps encoded in the .so name,
  47. perhaps using an abi tag magically embedded into each object)
  48. for flagging config options that break the ABI. Options
  49. such as UCLIBC_HAS_SOFT_FLOAT, UCLIBC_HAS_THREADS, UCLIBC_HAS_LOCALE,
  50. and perhaps others (finalize list) produce a lib with a differing
  51. ABI. Make it so apps cannot use an ABI mis-matched uClibc.
  52. This is most easily done using symbol versioning...
  53. *) Implement the long double versions of math funcs
  54. using wrappers on top of the double versions (size / precision
  55. trade off where size clearly wins).
  56. *) Make all small objects (>~50 bytes) into either inlines or
  57. into a static library
  58. *) Cleanup / rewrite sysconf.c. It should get some information
  59. from ldso (such as HZ). Other stuff it currently just makes
  60. up, which is obviously wrong. Also bits/uClibc_clk_tck.h
  61. needs to be updated at the same time to get proper HZ values.
  62. *) poll emulation using select() for old 2.0.x uClinux kernels
  63. in libc/sysdeps/linux/common/poll.c fails some python self-tests.
  64. Of course, modern systems using the actuall poll() syscall work fine.
  65. *) Cleanup/scrub all the Makefile copyright junk
  66. *) Fix dlopen, for both static and dynamic cases, and make it
  67. fully comply with SuSv3
  68. *) From the the ELF spec "...All shared object initializations happen
  69. before the executable file gains control. ... Before the initialization
  70. code for any object A is called, the initialization code for any other
  71. objects that object A depends on are called. For these purposes, an object
  72. A depends on another object B, if B appears in Ads list of needed objects
  73. (recorded in the DT_NEEDED entries of the dynamic structure). The order of
  74. initialization for circular dependencies is undefined." uClibc's shared
  75. lib loader should be fixed to run ctors in the specified order.
  76. TODO list for AFTER the uClibc 1.0.0 release:
  77. -------------------------------------------------
  78. *) Add support for Linux 2.6.x fast vsyscalls
  79. *) Enable pristine source tree builds
  80. *) Fix regex so it isn't so stinking big
  81. *) Fix glob so it isn't so stinking big
  82. *) run 'nm -D --size-sort -t d libuClibc-0.9.26.so' and work on the
  83. biggest things (i.e. stuff at the end of the list) to make
  84. them smaller.
  85. <more wishlist items here>
  86. Arch specific TODO:
  87. -------------------------------------------------
  88. alpha:
  89. ldso is not implemented
  90. arm:
  91. update crt1 code again for nommu (http://bugs.uclibc.org/view.php?id=538)
  92. recruit jbowler and integrate thumb support
  93. hppa:
  94. errno.c test segfaults causes segfault in clone.S (seems to be in glibc too)
  95. ia64:
  96. ldso is not implemented
  97. m68k:
  98. ldso lazy relocation doesnt work
  99. sparc:
  100. need a sigaction.c since common one doesnt work (signal tests)
  101. ldso needs to be updated since it's totally broken atm
  102. vax:
  103. pthread support, linktime warning support (implies GAS patches),
  104. general touchups, testing, ldso.
  105. bfin cris rfv sh64:
  106. need to be updated to new ldso changes and unification of the
  107. two uClibc_main funcs (__uClibc_start_main doesnt exist anymore)
  108. -----------------------------------------------------------------------------
  109. Manuel's todo:
  110. 1) Little things that need fixing:
  111. ----------------------------------
  112. a) Fix bug in *printf: outdigit precison bug
  113. b) Check that gnu/bsd extension members tm_gmtoff and tm_zone in struct tm
  114. are respected where they should be.
  115. c) Implement the obstack printf funcs for glibc compat.
  116. d) Implement glibc 'a' flag for scanf string conversions.
  117. e) Allow use of the older non-table-based ctype functions when using
  118. stub locale support. (smaller)
  119. 2) Additional str{f|p}time issues.
  120. ----------------------------------
  121. a) Spacing issue wrt strptime.
  122. b) Support locale specific alternate digits. (data is in place)
  123. c) Support locale era in year designations. (data is in place)
  124. d) Deal with mb format string issues in strftime.
  125. e) Implement wcsftime.
  126. 3) Other locale issues (my implementation):
  127. -------------------------------------------
  128. a) Do a little more clean up of ctype and wctype.
  129. b) Rework of the locale data organization to make using locales reasonable
  130. when staticly linking. (mmap)
  131. c) Rewrite the locale data generation tools to process the text specifications
  132. rather than relying on glibc.
  133. d) Adapt regex lib to use my collation data and add the necessary collating
  134. item tables to support SUSv3 required features.
  135. e) transliteration of unsupported wchars in 8-bit locales (like glibc).
  136. f) Support ISO/IEC 14652 draft locale extensions (LC_PAPER, etc).
  137. g) Implement strfrom.
  138. h) Shift-state codeset locale support?
  139. 4) Misc:
  140. --------
  141. a) Port uClibc to other OSs (including elks), or even bare metal (libgloss).
  142. b) Write a space-efficient gettext substitute, to avoid storing large amounts
  143. of redundant data.