TODO 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. TODO list for every uClibc release:
  2. -------------------------------------------------
  3. *) Test cris, i386, mips, mipsel, sh, x86_64, arm, armeb, and powerpc
  4. with the latest LTP testsuite. Fix any regressions and post LTP
  5. testsuite results for each architecture on uclibc.org.
  6. *) Audit header files. Remove prototypes for all functions that
  7. are not supported -- especially needed for the libm headers.
  8. *) Audit header files. When options are disabled, also disable
  9. them in the include files as well by checking for the proper
  10. define from include/bits/uClibc_config.h (pulled in from features.h)
  11. General release feature sets:
  12. -------------------------------------------------
  13. .29 will be mostly as-is
  14. .30 will be the NPTL merge
  15. .31 for the no-kernel-headers fix, etc, etc.
  16. TODO list for the uClibc 0.9.29 release:
  17. -------------------------------------------------
  18. *) as many of the arch-specific issues as possible
  19. *) Remove N instances of libc_hidden_proto() from uClibc internals.
  20. Instead add internal only header(s) defining all hidden prototypes.
  21. This will avoid clutter and guarantee prototype consistancy.
  22. *) The __is*_l() functions were all removed, such that we now only export
  23. the is*_l() functions (no prefix). Before, we had the prefixed versions
  24. for use by libstdc++ and weak versions without prefixes exported because
  25. those functions belong to no std (unless you call glibc a std). This should
  26. be fixed. Similar problems likely were created elsewhere.
  27. *) misc stdio bugs:
  28. http://bugs.uclibc.org/view.php?id=420
  29. http://bugs.uclibc.org/view.php?id=539
  30. *) bug in getopt handling:
  31. http://bugs.uclibc.org/view.php?id=61
  32. http://www.uclibc.org/lists/uclibc/2006-January/013851.html
  33. *) Should integrate test subdir better ... need to propagate CPU
  34. CFLAGS/LDFLAGS to the build/link for target binaries so that when we have
  35. a multilib toolchain, the proper ABI is selected.
  36. TODO list for the uClibc 1.0.0 release:
  37. -------------------------------------------------
  38. *) glob / fnmatch tests fail
  39. *) regex should pass AT&T conformance tests
  40. *) Finish hiding uClibc internal symbols from our exported namespace
  41. *) Add system for generating minimal system call asm wrappers that abuse
  42. the C ABI to minimize amount of register/stack manipulation
  43. *) Explicity add some sortof CONFIG_LINUX_2_2_ABI, CONFIG_LINUX_2_4_ABI
  44. and CONFIG_LINUX_2_6_ABI type options, rather than having the abi
  45. depend on the selected set of kernel headers. This will likely also
  46. require that we provide a set of kernel headers (probably a derivitive
  47. of Mazur's linux-libc-headers) that can supplies the 2.2, 2.4, and 2.6
  48. kernel abi.
  49. *) Documentation updates:
  50. *) Write a uClibc HOWTO document
  51. *) Update README document
  52. *) Update INSTALL document
  53. *) Update docs/Glibc_vs_uClibc_Differences.txt document
  54. and fully document all differences between the feature
  55. set of uClibc and glibc.
  56. *) Update docs/uClibc_vs_SuSv3.txt document
  57. *) Update docs/threads.txt document
  58. *) Write man pages for ldd and ldconfig utility binaries
  59. *) Implement some mechanism (perhaps encoded in the .so name,
  60. perhaps using an abi tag magically embedded into each object)
  61. for flagging config options that break the ABI. Options
  62. such as UCLIBC_HAS_SOFT_FLOAT, UCLIBC_HAS_THREADS, UCLIBC_HAS_LOCALE,
  63. and perhaps others (finalize list) produce a lib with a differing
  64. ABI. Make it so apps cannot use an ABI mis-matched uClibc.
  65. This is most easily done using symbol versioning...
  66. *) Implement the long double versions of math funcs
  67. using wrappers on top of the double versions (size / precision
  68. trade off where size clearly wins).
  69. *) Make all small objects (>~50 bytes) into either inlines or
  70. into a static library
  71. *) Cleanup / rewrite sysconf.c. It should get some information
  72. from ldso (such as HZ). Other stuff it currently just makes
  73. up, which is obviously wrong. Also bits/uClibc_clk_tck.h
  74. needs to be updated at the same time to get proper HZ values.
  75. *) poll emulation using select() for old 2.0.x uClinux kernels
  76. in libc/sysdeps/linux/common/poll.c fails some python self-tests.
  77. Of course, modern systems using the actuall poll() syscall work fine.
  78. *) Cleanup/scrub all the Makefile copyright junk
  79. *) Fix dlopen, for both static and dynamic cases, and make it
  80. fully comply with SuSv3
  81. TODO list for AFTER the uClibc 1.0.0 release:
  82. -------------------------------------------------
  83. *) Add support for 64bit time (to deal withhttp://2038bug.com/):
  84. date -s 011903142038 sets epoch to roll over in a few seconds (2^31)
  85. *) Add support for Linux 2.6.x fast vsyscalls
  86. *) Enable pristine source tree builds
  87. *) Fix regex so it isn't so stinking big
  88. *) Fix glob so it isn't so stinking big
  89. *) run 'nm -D --size-sort -t d libuClibc-0.9.26.so' and work on the
  90. biggest things (i.e. stuff at the end of the list) to make
  91. them smaller.
  92. <more wishlist items here>
  93. Arch specific TODO:
  94. -------------------------------------------------
  95. alpha:
  96. ldso is not implemented
  97. arm:
  98. update crt1 code again for nommu (http://bugs.uclibc.org/view.php?id=538)
  99. recruit jbowler and integrate thumb support
  100. frv:
  101. needs to be updated for the new ldso changes and unification of the
  102. uClibc_main funcs (__uClibc_start_main doesnt exist anymore)
  103. hppa:
  104. errno.c test segfaults causes segfault in clone.S (seems to be in glibc too)
  105. i386:
  106. add support for fast system calls
  107. ia64:
  108. ldso is not implemented
  109. m68k:
  110. ldso lazy relocation doesnt work
  111. sh64:
  112. ldso is reasonably broken, presently requiring additional
  113. coaxing/threatening.
  114. sparc:
  115. need a sigaction.c since common one doesnt work (signal tests)
  116. ldso needs to be updated since it's totally broken atm
  117. vax:
  118. pthread support, linktime warning support (implies GAS patches),
  119. general touchups, testing, ldso.
  120. -----------------------------------------------------------------------------
  121. Manuel's todo:
  122. 1) Little things that need fixing:
  123. ----------------------------------
  124. a) Fix bug in *printf: outdigit precison bug
  125. b) Check that gnu/bsd extension members tm_gmtoff and tm_zone in struct tm
  126. are respected where they should be.
  127. c) Implement the obstack printf funcs for glibc compat.
  128. d) Implement glibc 'a' flag for scanf string conversions.
  129. e) Allow use of the older non-table-based ctype functions when using
  130. stub locale support. (smaller)
  131. f) __drand48_iterate should be void
  132. g) alphasort vs. versionsort. The former seems to be SVID, the latter GNU
  133. i.e. reverse to what we currently do. The latter is unimplemented.
  134. h) ponder removal/configs to turn off: __xpg_*, bsd_signal, dysize,
  135. getw/putw, utimes,
  136. 2) Additional str{f|p}time issues.
  137. ----------------------------------
  138. a) Spacing issue wrt strptime.
  139. b) Support locale specific alternate digits. (data is in place)
  140. c) Support locale era in year designations. (data is in place)
  141. d) Deal with mb format string issues in strftime.
  142. e) Implement wcsftime.
  143. 3) Other locale issues (my implementation):
  144. -------------------------------------------
  145. a) Do a little more clean up of ctype and wctype.
  146. b) Rework of the locale data organization to make using locales reasonable
  147. when staticly linking. (mmap)
  148. c) Rewrite the locale data generation tools to process the text specifications
  149. rather than relying on glibc.
  150. d) Adapt regex lib to use my collation data and add the necessary collating
  151. item tables to support SUSv3 required features.
  152. e) transliteration of unsupported wchars in 8-bit locales (like glibc).
  153. f) Support ISO/IEC 14652 draft locale extensions (LC_PAPER, etc).
  154. g) Implement strfrom.
  155. h) Shift-state codeset locale support?
  156. 4) Misc:
  157. --------
  158. a) Port uClibc to other OSs (including elks), or even bare metal (libgloss).
  159. b) Write a space-efficient gettext substitute, to avoid storing large amounts
  160. of redundant data.