TODO 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Any takers?
  2. On ARM, the kernel fp math emulator uses a funky byte ordering
  3. that causes some of our math functions to produce bad results.
  4. We need to fix up the things for the wierd ARM byte ordering.
  5. Fix regex so it isn't so stinking big
  6. Fix glob so it isn't so stinking big
  7. Integrate Jeff Garzik's key-value reading code for pwd/grp, /etc/hosts, etc
  8. Finish sparc port
  9. Documentation
  10. Better configuration system
  11. run 'nm -D --size-sort -t d libuClibc-0.9.5.so' and work on the biggest things
  12. (i.e. stuff at the end of the list) to make them smaller.
  13. make inb/outb work (for lilo et all)
  14. update: done for i386 and arm. lilo and the pcmcia tools compile cleanly now
  15. include/resolv.h does not define struct _res, and libc/inet/resolv.c
  16. does not use this struct. res_init does nothing. the other res_*
  17. functions are not implemented.
  18. scandir.c doesn't check returns on malloc and realloc.
  19. Add in shadow support (include/shadow.h and such)
  20. Right now, getopt has different behavior when dynamically vs when
  21. statically linked, violating the principle of least surprise.
  22. Split the math library, such that by default we only build C89
  23. math functions, i.e.: acos asin atan atan2 ceil cos cosh exp
  24. fabs floor fmod frexp ldexp log log10 modf pow sin sinh sqrt
  25. tan tanh
  26. -----------------------------------------------------------------------------
  27. Manuel's unsorted todo:
  28. Move the target-specific sysconf.c generator to extra (as it needs to be
  29. run on the target) and fix libc/unistd/Makefile.
  30. Add a usage message to the gcc wrapper.
  31. Look at pre-cephes-addition floating point code and possibly rework.
  32. (primarily nan and infinity handling)
  33. Make scanf and strtod aware of nan and inf.
  34. Add overflow error-checking to fread and fwrite.
  35. Document uClibc-specific extensions I know of or have implemented.
  36. binary string conversion for printf
  37. malloc-less stdio
  38. optional printf unconfigured-for-type error messages
  39. Add binary string conversion to scanf to mirror printf?
  40. Teach scanf about (nil) for %p.
  41. What to do about %m in printf?
  42. Make errno and endptr handling the default in the strto* functions and
  43. document how to turn those off to save space.
  44. -----------------------------------------------------------------------------
  45. ds's list:
  46. Search for string literals that are not in the .rodata section. (Varies
  47. by architecture.)
  48. man pages for binaries
  49. add basename() and dirname() for gettext
  50. add obstack stuff for gettext (?)
  51. setjmp() on powerpc
  52. getaddrinfo()
  53. -----------------------------------------------------------------------------
  54. PORTING
  55. -------
  56. bits/dirent.h currently differs from the glibc version (d_type unsupported)