aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO12
1 files changed, 12 insertions, 0 deletions
diff --git a/TODO b/TODO
index 5c642cb8d..8b4279d87 100644
--- a/TODO
+++ b/TODO
@@ -35,6 +35,18 @@ and usage information. Some folks don't need or want it...
35 35
36----------------------- 36-----------------------
37 37
38Running the following:
39
40 make LDFLAGS+=-nostdlib 2>&1 | sed -ne 's/.*undefined reference to `\(.*\)..*/\1/gp' | sort | uniq
41
42reveals the list of all external (i.e. libc) things that BusyBox depends on.
43It would be a very nice thing to reduce this list to an absolute minimum, and
44then create a microLibc to provide these functions. There is no good reason
45for GNU libc to be so big. I'm sure it can be a lot better.
46
47
48-----------------------
49
38Compile with debugging on, run 'nm --size-sort ./busybox' 50Compile with debugging on, run 'nm --size-sort ./busybox'
39and then start with the biggest things and make them smaller... 51and then start with the biggest things and make them smaller...
40 52