TODO 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. Erik's TODO list for the next release:
  2. 1) Finish up the reentrancy auditing
  3. 2) Better configuration system (CML1 + kbuild + menuconfig)
  4. 3) When fixing the config system, ensure that _every_ option
  5. that is enabled or disabled is listed in uClibc_config.h
  6. 4) When options are disabled, also disable them in the
  7. include files as well.
  8. 5) Make all small objects (>~50 bytes) into either inlines or
  9. into a static library
  10. 6) Rework code that fails POSIX conformance tests
  11. Other random things:
  12. *) Rework code that fails POSIX conformance tests
  13. *) Document all differences between the feature set of uClibc
  14. and glibc.
  15. *) Add missing syscall() function to allow arbitraty syscalls
  16. to be made.
  17. *) Fix profiling support
  18. *) pwrite64 and pread64
  19. -----------------------------------------------------------------------------
  20. Manuel's todo:
  21. Test ungetwc.
  22. Implement %lc (%C) and %ls (%S) handling for printf.
  23. Implement grouping support and locale-specific radix.
  24. Deal with mb format string issues in printf, scanf, strftime (at least).
  25. Implement wide formatted output.
  26. Reimplement scanf for narrow and wide streams.
  27. Implement any other missing standard functions from wchar.h.
  28. Improve customization of the new stdio code.
  29. Clean up locale code and make it easier to build. (Fix alt_digits!)
  30. Add collation support (initally for 8-bit locales) and implement strxfrm and strcoll.
  31. Reimlement strerror and strsignal.
  32. tzfile?
  33. era support in strftime/strptime?
  34. Reimplement _dtostr to correct its deficiencies (%A support!) and hopefully reduce its size.
  35. Revisit the unified syscall stuff which has been broken for a while now.
  36. Older stuff...
  37. Move the target-specific sysconf.c generator to extra (as it needs to be
  38. run on the target) and fix libc/unistd/Makefile.
  39. Add a usage message to the gcc wrapper.
  40. Make errno and endptr handling the default in the strto* functions and
  41. document how to turn those off to save space.
  42. -----------------------------------------------------------------------------
  43. ds's list:
  44. Search for string literals that are not in the .rodata section. (Varies
  45. by architecture and gcc version.)
  46. man pages for binaries
  47. add obstack stuff for gettext (?)
  48. check compiling without FP support -- are FP instructions still generated?
  49. Needs a uClibc_config.h entry dependent on HAS_FLOATING_POINT.
  50. Why does ld.so search /usr/powerpc-uclibc/lib before LD_LIBRARY_PATH?
  51. -----------------------------------------------------------------------------
  52. Any takers?
  53. *) Fix regex so it isn't so stinking big
  54. *) Fix glob so it isn't so stinking big
  55. *) Documentation
  56. - List all differences between the feature set of uClibc and glibc.
  57. *) run 'nm -D --size-sort -t d libuClibc-0.9.5.so' and work on the biggest things
  58. (i.e. stuff at the end of the list) to make them smaller.
  59. *) make inb/outb work for all arches. This is complete for i386 and arm.
  60. Other archs like powerpc, still need fixing.
  61. -----------------------------------------------------------------------------
  62. PORTING
  63. -------
  64. bits/dirent.h currently differs from the glibc version (d_type unsupported)