TODO 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. For the end of June:
  22. Fix 2 minor issues with the mb<->wc functions.
  23. Implement wide unformatted i/o.
  24. Implement wide formatted output.
  25. General stdio cleanup. (one bufpos variable; removed redundant locking).
  26. Reimplement scanf for narrow and wide streams.
  27. Improve customization of the new stdio code.
  28. Reimplement _dtostr to correct its deficiencies and hopefully reduce its size.
  29. Revisit the unified syscall stuff which has been broken for a while now.
  30. Older stuff...
  31. Move the target-specific sysconf.c generator to extra (as it needs to be
  32. run on the target) and fix libc/unistd/Makefile.
  33. Add a usage message to the gcc wrapper.
  34. Make errno and endptr handling the default in the strto* functions and
  35. document how to turn those off to save space.
  36. -----------------------------------------------------------------------------
  37. ds's list:
  38. Search for string literals that are not in the .rodata section. (Varies
  39. by architecture and gcc version.)
  40. man pages for binaries
  41. add obstack stuff for gettext (?)
  42. check compiling without FP support -- are FP instructions still generated?
  43. Needs a uClibc_config.h entry dependent on HAS_FLOATING_POINT.
  44. Why does ld.so search /usr/powerpc-uclibc/lib before LD_LIBRARY_PATH?
  45. -----------------------------------------------------------------------------
  46. Any takers?
  47. *) Fix regex so it isn't so stinking big
  48. *) Fix glob so it isn't so stinking big
  49. *) Documentation
  50. - List all differences between the feature set of uClibc and glibc.
  51. *) run 'nm -D --size-sort -t d libuClibc-0.9.5.so' and work on the biggest things
  52. (i.e. stuff at the end of the list) to make them smaller.
  53. *) make inb/outb work for all arches. This is complete for i386 and arm.
  54. Other archs like powerpc, still need fixing.
  55. -----------------------------------------------------------------------------
  56. PORTING
  57. -------
  58. bits/dirent.h currently differs from the glibc version (d_type unsupported)