OSDN Git Service

Update.
[uclinux-h8/uClibc.git] / TODO
1
2 Erik's TODO list for the next release:
3
4     1) Fix profiling support
5     2) Implement getgrgid_r and getgrnam_r, per SuSv3 
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) Rework code that fails POSIX conformance tests
11     6) Document all differences between the feature set of uClibc 
12         and glibc.
13     7) Add missing syscall() function to ports that are still 
14         missing it.  (x86 and arm are finished so far).
15
16
17
18 -----------------------------------------------------------------------------
19 Manuel's todo:
20
21 I'm currently working on completing the wide char and locale support.
22
23   1) Little things that need fixing:
24   ----------------------------------
25   *) Fix bugs in *printf:  wprintf %ls bug ; outdigit precison bug
26   a) Use locale decimal point in *printf() and strto*d() -- slightly
27      complicated by the fact that at least one locale uses a wchar
28      radix that does not map to a single byte in UTF-8.
29   b) Use locale digit grouping in *printf() flosting point.
30   c) Deal with mb format string issues in scanf and strftime (at least).
31   d) Support gnu/bsd extension members tm_gmtoff and tm_zone in struct tm.
32   
33   2) Implement wide char floating point conversion functions -- wcsto*().
34   
35   3) Reimplement scanf for narrow and wide streams.
36   -------------------------------------------------
37      The current char version of scanf() needs some cleanup.  Also,
38      modifying the char version of scanf() to create the wchar versions
39      will require reworking the implementation of matching char sets
40      (enclosed in []).
41   
42   4) Additional str{f|p}time issues.
43   ----------------------------------
44   a) Spacing issue wrt strptime.
45   b) Support locale specific alternate digits.  (data is in place)
46   c) Support locale era in year designations.   (data is in place)
47   
48   5) Other locale issues (my implementation):
49   -------------------------------------------
50   a) Additional clean up of ctype and wctype, primarily to allow for mmap'd
51      locales and updateable locale data.
52   b) Build a C-only locale object for linking and allow full locale data to
53      be mmap'd in later, to allow updating and to make locale support useful
54      for staticly linked apps.
55   c) Adapt regex lib to use my collation data and add the necessary collating
56      item tables to support SUSv3 required features.
57   d) transliteration of unsupported wchars in 8-bit locales (like glibc).
58   e) Support ISO/IEC 14652 draft locale extensions (LC_PAPER, etc).
59
60
61 Other stuff:
62
63 Reimplement _dtostr to correct its deficiencies (%A support!) and hopefully
64         reduce its size.
65
66 Move the target-specific sysconf.c generator to extra (as it needs to be
67         run on the target) and fix libc/unistd/Makefile.
68
69 Make errno and endptr handling the default in the strto* functions and
70         document how to turn those off to save space.
71
72 -----------------------------------------------------------------------------
73 ds's list:
74
75 Search for string literals that are not in the .rodata section.  (Varies
76 by architecture and gcc version.)
77
78 man pages for binaries
79
80 add obstack stuff for gettext (?)
81
82 check compiling without FP support -- are FP instructions still generated?
83 Needs a uClibc_config.h entry dependent on HAS_FLOATING_POINT.
84
85 Why does ld.so search /usr/powerpc-uclibc/lib before LD_LIBRARY_PATH?
86
87 -----------------------------------------------------------------------------
88
89 Any takers?
90
91 *) Fix regex so it isn't so stinking big
92 *) Fix glob so it isn't so stinking big
93 *) Documentation
94         - List all differences between the feature set of uClibc and glibc.
95 *) run 'nm -D --size-sort -t d libuClibc-0.9.5.so' and work on the biggest things 
96         (i.e. stuff at the end of the list) to make them smaller.
97 *) make inb/outb work for all arches.  This is complete for i386 and arm.  
98         Other archs like powerpc, still need fixing.
99
100 -----------------------------------------------------------------------------
101
102 PORTING
103 -------
104
105 bits/dirent.h currently differs from the glibc version (d_type unsupported)
106
107