OSDN Git Service

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