TODO 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. Erik's TODO list for the next release:
  2. 1) Better configuration system (CML1 + kbuild + menuconfig)
  3. 2) When fixing the config system, ensure that _every_ option
  4. that is enabled or disabled is listed in uClibc_config.h
  5. 3) When options are disabled, also disable them in the
  6. include files as well.
  7. 4) Make all small objects (>~50 bytes) into either inlines or
  8. into a static library
  9. 5) Add struct _res support to libc/inet/resolv.c. Right now,
  10. struct _res, and res_init do nothing. The other res_*
  11. functions are not yet implemented. So fix that.
  12. 6) Fix uClibc timezone support so date(1) will show a real
  13. timezone, instead of just '???'
  14. 7) Rework code that fails POSIX conformance tests
  15. 8) Fix the bugs in crypt so it passes conformance tests
  16. 9) Reentrancy auditing
  17. 10) Rework pwd/grp for standards compliance (and integrate
  18. Jeff Garzik's key-value reading code for pwd/grp, and
  19. perhaps for /etc/hosts and friends as well)
  20. 11) Document all differences between the feature set of uClibc
  21. and glibc.
  22. 12) Add missing syscall() function to allow arbitraty syscalls
  23. to be made.
  24. 13) Split the tests up into two parts -- a compile phase, and
  25. a separate shell-script-driven test phase, allowing the
  26. tests to be run when cross compiling....
  27. -----------------------------------------------------------------------------
  28. Manuel's todo:
  29. Implement wide unformatted i/o. (current project)
  30. Implement wide formatted output (printf).
  31. Update the strto* funcs to my current versions to remove the dependency
  32. on the long long support funcs from libgcc.a.
  33. Update some other stdlib and (possibly) string funcs.
  34. Update the ctype code to my latest stuff... smaller plus supports new isblank()
  35. for locales while still keeping byte table entries.
  36. Reimplement scanf for narrow and wide streams.
  37. Improve customization of the new stdio code.
  38. Reimplement _dtostr to correct its deficiencies and hopefully reduce its size.
  39. Revisit the unified syscall stuff which has been broken for a while now.
  40. Older stuff...
  41. Move the target-specific sysconf.c generator to extra (as it needs to be
  42. run on the target) and fix libc/unistd/Makefile.
  43. Add a usage message to the gcc wrapper.
  44. Make errno and endptr handling the default in the strto* functions and
  45. document how to turn those off to save space.
  46. -----------------------------------------------------------------------------
  47. ds's list:
  48. Search for string literals that are not in the .rodata section. (Varies
  49. by architecture and gcc version.)
  50. man pages for binaries
  51. add obstack stuff for gettext (?)
  52. check compiling without FP support -- are FP instructions still generated?
  53. Needs a uClibc_config.h entry dependent on HAS_FLOATING_POINT.
  54. Why does ld.so search /usr/powerpc-uclibc/lib before LD_LIBRARY_PATH?
  55. -----------------------------------------------------------------------------
  56. Any takers?
  57. *) Fix regex so it isn't so stinking big
  58. *) Fix glob so it isn't so stinking big
  59. *) Documentation
  60. - List all differences between the feature set of uClibc and glibc.
  61. *) run 'nm -D --size-sort -t d libuClibc-0.9.5.so' and work on the biggest things
  62. (i.e. stuff at the end of the list) to make them smaller.
  63. *) make inb/outb work for all arches. This is complete for i386 and arm.
  64. Other archs like powerpc, still need fixing.
  65. -----------------------------------------------------------------------------
  66. PORTING
  67. -------
  68. bits/dirent.h currently differs from the glibc version (d_type unsupported)