OSDN Git Service

Update my TODO list. In particular, breakdown what I'll be working on
[uclinux-h8/uClibc.git] / TODO
1
2 Erik's TODO list for the next release:
3
4     1) Release gcc 2.95.x native uClibc toolchain with
5         STLport (to provide full C++ support)
6     2) Commit new configuration system (CML1 + kbuild + menuconfig)
7         work is already done and ready to commit...
8     3) Fix profiling support
9     4) Implement getgrgid_r and getgrnam_r, per SuSv3 
10     5) Fix libc/inet/rpc/rpc_thread.c thread local storage
11     6) Change HAS_FLOATING_POINT so we can support -msoft-float
12     7) When options are disabled, also disable them in the
13         include files as well.
14     8) Make all small objects (>~50 bytes) into either inlines or
15         into a static library
16     9) Rework code that fails POSIX conformance tests
17    10) Document all differences between the feature set of uClibc 
18         and glibc.
19    11) Add missing syscall() function to ports that are still 
20         missing it.  (x86 and arm are finished so far).
21
22
23
24 -----------------------------------------------------------------------------
25 Manuel's todo:
26
27 In the next couple of months, I plan on completing the wide char and locale
28 support.  Here's my current list of things to implement by early November.
29
30   1) Little things that need fixing:
31   ----------------------------------
32   a) Use locale decimal point in *printf() and strto*d() -- slightly
33      complicated by the fact that at least one locale uses a wchar
34      radix that does not map to a single byte in UTF-8.
35   b) Use locale digit grouping in *printf().
36   c) Implement %lc (%C) and %ls (%S) handling for printf.
37   d) Deal with mb format string issues in printf, scanf, 
38   strftime (at least).
39   e) Implement wcwidth() and wcswidth() -- use Markus Kuhn's versions.
40   
41   2) Implement wide char numeric conversion functions -- wcsto*().
42   ----------------------------------------------------------------
43      These should be relatively minor modifications to the corresponding
44      strto*() functions, unless locale specific alternate digit support
45      is desired.
46   
47   3) Implement wide formatted output -- *wprintf():
48   -------------------------------------------------
49      The stream output variants should be easily created by appropriately
50      modifying the char *printf() functions.
51   
52      The string buffer variants may take some time to implement because
53      they need to store wchars in a buffer.  It will be necessary to hack
54      the core stdio code slightly to support this.
55   
56   4) Reimplement scanf for narrow and wide streams.
57   -------------------------------------------------
58      The current char version of scanf() needs some cleanup.  Also,
59      modifying the char version of scanf() to create the wchar versions
60      will require reworking the implementation of matching char sets
61      (enclosed in []).
62   
63      Also, as with *wprintf() above, the string buffer variants of wscanf()
64      may require some additional work to the core stdio code.
65   
66   5) Additional str{f|p}time issues.
67   ----------------------------------
68      Support locale specific alternate digits.
69      Support locale era in year designations.
70   
71   6) Other locale issues (my implementation):
72   -------------------------------------------
73   a) Clean up locale code to make building easier.  Fix alt_digits.
74      (Note: This is only _clean_up_ of the current stuff in extra/locale
75       so that it can be cross-compiled, etc.  I'm not talking about the
76       complete rewrite that should really be done.)
77   b) Additional clean up of ctype and wctype.
78   c) Implement collation support for char and wchar -- *xfrm() and *coll().
79   d) transliteration of unsupported wchars in 8-bit locales (like glibc).
80
81
82 Other stuff:
83
84 Reimplement _dtostr to correct its deficiencies (%A support!) and hopefully
85         reduce its size.
86
87 Move the target-specific sysconf.c generator to extra (as it needs to be
88         run on the target) and fix libc/unistd/Makefile.
89
90 Make errno and endptr handling the default in the strto* functions and
91         document how to turn those off to save space.
92
93 -----------------------------------------------------------------------------
94 ds's list:
95
96 Search for string literals that are not in the .rodata section.  (Varies
97 by architecture and gcc version.)
98
99 man pages for binaries
100
101 add obstack stuff for gettext (?)
102
103 check compiling without FP support -- are FP instructions still generated?
104 Needs a uClibc_config.h entry dependent on HAS_FLOATING_POINT.
105
106 Why does ld.so search /usr/powerpc-uclibc/lib before LD_LIBRARY_PATH?
107
108 -----------------------------------------------------------------------------
109
110 Any takers?
111
112 *) Fix regex so it isn't so stinking big
113 *) Fix glob so it isn't so stinking big
114 *) Documentation
115         - List all differences between the feature set of uClibc and glibc.
116 *) run 'nm -D --size-sort -t d libuClibc-0.9.5.so' and work on the biggest things 
117         (i.e. stuff at the end of the list) to make them smaller.
118 *) make inb/outb work for all arches.  This is complete for i386 and arm.  
119         Other archs like powerpc, still need fixing.
120
121 -----------------------------------------------------------------------------
122
123 PORTING
124 -------
125
126 bits/dirent.h currently differs from the glibc version (d_type unsupported)
127
128