TODO 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. Erik's TODO list for the next release:
  2. 0) Release C++ toolchain including libstdc++ linked vs uClibc
  3. 1) Better configuration system (CML1 + kbuild + menuconfig)
  4. 2) When fixing the config system, ensure that _every_ option
  5. that is enabled or disabled is listed in uClibc_config.h
  6. 3) When options are disabled, also disable them in the
  7. include files as well.
  8. 4) Make all small objects (>~50 bytes) into either inlines or
  9. into a static library
  10. 5) Fix Manuel's signal bug
  11. 6) Add struct _res support to libc/inet/resolv.c. Right now,
  12. struct _res, and res_init do nothing. The other res_*
  13. functions are not yet implemented. So fix that.
  14. 7) Fix uClibc timezone support so date(1) will show a real
  15. timezone, instead of just '???'
  16. 8) Rework some?/most?/all? code that fails POSIX conformance tests
  17. 9) Fix the bugs in crypt so it passes conformance tests
  18. 10) Reentrancy auditing
  19. 11) Rework pwd/grp for standards compliance (and integrate
  20. Jeff Garzik's key-value reading code for pwd/grp, and
  21. perhaps for /etc/hosts and friends as well)
  22. -----------------------------------------------------------------------------
  23. Manuel's todo:
  24. Implement wide unformatted i/o. (current project)
  25. Implement wide formatted output (printf).
  26. Update the strto* funcs to my current versions to remove the dependency
  27. on the long long support funcs from libgcc.a.
  28. Update some other stdlib and (possibly) string funcs.
  29. Update the ctype code to my latest stuff... smaller plus supports new isblank()
  30. for locales while still keeping byte table entries.
  31. Reimplement scanf for narrow and wide streams.
  32. Improve customization of the new stdio code.
  33. Reimplement _dtostr to correct its deficiencies and hopefully reduce its size.
  34. Revisit the unified syscall stuff which has been broken for a while now.
  35. Older stuff...
  36. Move the target-specific sysconf.c generator to extra (as it needs to be
  37. run on the target) and fix libc/unistd/Makefile.
  38. Add a usage message to the gcc wrapper.
  39. Make errno and endptr handling the default in the strto* functions and
  40. document how to turn those off to save space.
  41. -----------------------------------------------------------------------------
  42. ds's list:
  43. Search for string literals that are not in the .rodata section. (Varies
  44. by architecture and gcc version.)
  45. man pages for binaries
  46. add obstack stuff for gettext (?)
  47. check compiling without FP support -- are FP instructions still generated?
  48. Needs a uClibc_config.h entry dependent on HAS_FLOATING_POINT.
  49. Why does ld.so search /usr/powerpc-uclibc/lib before LD_LIBRARY_PATH?
  50. -----------------------------------------------------------------------------
  51. Any takers?
  52. *) Fix regex so it isn't so stinking big
  53. *) Fix glob so it isn't so stinking big
  54. *) Add missing syscall() function to allow arbitraty syscalls to be made.
  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)