OSDN Git Service

add some info on what needs to be done for specific arches
[uclinux-h8/uClibc.git] / TODO
1 TODO list for the uClibc 0.9.28 release:
2 -------------------------------------------------
3     *) Audit header files.  Remove prototypes for all functions that
4         are not supported -- especially needed for the libm headers.
5     *) Audit header files.  When options are disabled, also disable
6         them in the include files as well by checking for the proper
7         define from include/bits/uClibc_config.h (pulled in from features.h)
8     *) Test each architecture with the latest LTP testsuite, and post
9         LTP testsuite results for each architecture on uclibc.org.
10
11
12 TODO list for the uClibc 1.0.0 release:
13 -------------------------------------------------
14
15     *) Hide uClibc internal symbols from our exported namespace.
16     *) Explicity add some sortof CONFIG_LINUX_2_2_ABI, CONFIG_LINUX_2_4_ABI
17         and CONFIG_LINUX_2_6_ABI type options, rather than having the abi
18         depend on the selected set of kernel headers.  This will likely also
19         require that we provide a set of kernel headers (probably a derivitive
20         of Mazur's linux-libc-headers) that can supplies the 2.2, 2.4, and 2.6
21         kernel abi.
22     *) Documentation updates:
23             *) Write a uClibc HOWTO document
24             *) Update README document
25             *) Update INSTALL document
26             *) Update docs/Glibc_vs_uClibc_Differences.txt document
27                 and fully document all differences between the feature
28                 set of uClibc and glibc.
29             *) Update docs/uClibc_vs_SuSv3.txt document
30             *) Update docs/threads.txt document
31             *) Write man pages for ldd and ldconfig utility binaries
32     *) Implement some mechanism (perhaps encoded in the .so name,
33         perhaps using an abi tag magically embedded into each object)
34         for flagging config options that break the ABI.  Options
35         such as UCLIBC_HAS_SOFT_FLOAT, UCLIBC_HAS_THREADS, UCLIBC_HAS_LOCALE,
36         and perhaps others (finalize list) produce a lib with a differing
37         ABI.  Make it so apps cannot use an ABI mis-matched uClibc.
38         This is most easily done using symbol versioning...
39     *) Implement the long double versions of math funcs
40         using wrappers on top of the double versions (size / precision
41         trade off where size clearly wins).
42     *) Make all small objects (>~50 bytes) into either inlines or
43         into a static library
44     *) Cleanup / rewrite sysconf.c.  It should get some information
45         from ldso (such as HZ).  Other stuff it currently just makes
46         up, which is obviously wrong.  Also bits/uClibc_clk_tck.h
47         needs to be updated at the same time to get proper HZ values.
48     *)  It would nice if valgrind wouldn't complain about the atexit() malloc'd
49         memory for destructors, which happens since the dynamic linker calls
50         atexit(), which calls malloc() prior to valgrind starting, so valgrind
51         complains because it didn't see that memory allocated.
52     *) poll emulation using select() for old 2.0.x uClinux kernels
53         in libc/sysdeps/linux/common/poll.c fails some python self-tests.
54         Of course, modern systems using the actuall poll() syscall work fine.
55     *) Rework the build system Makefile to eliminate recursive make.
56     *) Build both pic and non-pic objects where appropriate, so that
57         static libs need not pay the pic size penalty.
58     *) Cleanup/scrub all the Makefile copyright junk
59     *) Fix dlopen, for both static and dynamic cases, and make it
60         fully comply with SuSv3
61     *) From the the ELF spec "...All shared object initializations happen
62         before the executable file gains control.  ...  Before the initialization
63         code for any object A is called, the initialization code for any other
64         objects that object A depends on are called.  For these purposes, an object
65         A depends on another object B, if B appears in Ads list of needed objects
66         (recorded in the DT_NEEDED entries of the dynamic structure). The order of
67         initialization for circular dependencies is undefined."  uClibc's shared
68         lib loader should be fixed to run ctors in the specified order.
69
70
71 TODO list for AFTER the uClibc 1.0.0 release:
72 -------------------------------------------------
73     *) Add support for Linux 2.6.x NPTL pthreads, futexes, etc
74     *) Add support for Linux 2.6.x fast vsyscalls
75     *) Enable pristine source tree builds
76     *) Fix regex so it isn't so stinking big
77     *) Fix glob so it isn't so stinking big
78     *) run 'nm -D --size-sort -t d libuClibc-0.9.26.so' and work on the
79         biggest things (i.e. stuff at the end of the list) to make
80         them smaller.
81     <more wishlist items here>
82
83
84 Arch specific TODO:
85 -------------------------------------------------
86   alpha:
87     _init/_fini hangs signal-ed (assert test)
88     output from cloned children seems funky (unistd/clone test)
89   m68k:
90     need to verify libc again
91     ldso needs to be updated since it's totally broken atm
92   sparc:
93     need a sigaction.c since common one doesnt work (signal tests)
94     ldso needs to be updated since it's totally broken atm
95   x86_64:
96     ldso needs to be finished off (elfinterp/resolve)
97
98
99
100
101 -----------------------------------------------------------------------------
102 Manuel's todo:
103
104   1) Little things that need fixing:
105   ----------------------------------
106   a) Fix bug in *printf: outdigit precison bug
107   b) Check that gnu/bsd extension members tm_gmtoff and tm_zone in struct tm
108      are respected where they should be.
109   c) Implement the obstack printf funcs for glibc compat.
110   d) Implement glibc 'a' flag for scanf string conversions.
111   e) Allow use of the older non-table-based ctype functions when using
112      stub locale support. (smaller)
113
114   2) Additional str{f|p}time issues.
115   ----------------------------------
116   a) Spacing issue wrt strptime.
117   b) Support locale specific alternate digits.  (data is in place)
118   c) Support locale era in year designations.   (data is in place)
119   d) Deal with mb format string issues in strftime.
120   e) Implement wcsftime.
121
122   3) Other locale issues (my implementation):
123   -------------------------------------------
124   a) Do a little more clean up of ctype and wctype.
125   b) Rework of the locale data organization to make using locales reasonable
126      when staticly linking.  (mmap)
127   c) Rewrite the locale data generation tools to process the text specifications
128      rather than relying on glibc.
129   d) Adapt regex lib to use my collation data and add the necessary collating
130      item tables to support SUSv3 required features.
131   e) transliteration of unsupported wchars in 8-bit locales (like glibc).
132   f) Support ISO/IEC 14652 draft locale extensions (LC_PAPER, etc).
133   g) Implement strfrom.
134   h) Shift-state codeset locale support?
135
136   4) Misc:
137   --------
138   a) Port uClibc to other OSs (including elks), or even bare metal (libgloss).
139   b) Write a space-efficient gettext substitute, to avoid storing large amounts
140      of redundant data.
141