OSDN Git Service

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