diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-13 20:32:48 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-03-13 20:32:48 +0000 |
commit | ef7ccac9da7963fa5bd8c77f93e4f4e416001f54 (patch) | |
tree | 94e6d5c837ea2542a9afbc94b3685704e025d53e /TODO | |
parent | a25d83b282eb763cd6915622242a5c7028a98539 (diff) | |
download | busybox-w32-ef7ccac9da7963fa5bd8c77f93e4f4e416001f54.tar.gz busybox-w32-ef7ccac9da7963fa5bd8c77f93e4f4e416001f54.tar.bz2 busybox-w32-ef7ccac9da7963fa5bd8c77f93e4f4e416001f54.zip |
- add two comments
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -4,6 +4,8 @@ Stuff that needs to be done. All of this is fair game for 1.2. | |||
4 | 4 | ||
5 | build system | 5 | build system |
6 | make -j is broken, -j1 is forced atm | 6 | make -j is broken, -j1 is forced atm |
7 | Make sure that the flags get pinned in e.g. Rules.mak so when expanding them | ||
8 | later on you get the cached result without the need to re-evaluate them. | ||
7 | ---- | 9 | ---- |
8 | find | 10 | find |
9 | doesn't understand (), lots of susv3 stuff. | 11 | doesn't understand (), lots of susv3 stuff. |
@@ -165,6 +167,7 @@ Memory Allocation | |||
165 | allocation on the stack or the heap. Unfortunately, we're not using it much. | 167 | allocation on the stack or the heap. Unfortunately, we're not using it much. |
166 | We need to audit our memory allocations and turn a lot of malloc/free calls | 168 | We need to audit our memory allocations and turn a lot of malloc/free calls |
167 | into RESERVE_CONFIG_BUFFER/RELEASE_CONFIG_BUFFER. | 169 | into RESERVE_CONFIG_BUFFER/RELEASE_CONFIG_BUFFER. |
170 | For a start, see e.g. make CFLAGS_EXTRA=-Wlarger-than-64 | ||
168 | 171 | ||
169 | And while we're at it, many of the CONFIG_FEATURE_CLEAN_UP #ifdefs will be | 172 | And while we're at it, many of the CONFIG_FEATURE_CLEAN_UP #ifdefs will be |
170 | optimized out by the compiler in the stack allocation case (since there's no | 173 | optimized out by the compiler in the stack allocation case (since there's no |