diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 12:38:24 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 12:38:24 +1000 |
commit | e77e395efda0c0ab5bf9c951627c4fcf65c2e32e (patch) | |
tree | ac99825f254ed6009d573b4a10d3685c5042caaa /docs | |
parent | 2c95747817c0f7a498c74ff975afacea7a241da2 (diff) | |
parent | 3e47cfec90fbe358692b3b960f7fa2303e465c2f (diff) | |
download | busybox-w32-e77e395efda0c0ab5bf9c951627c4fcf65c2e32e.tar.gz busybox-w32-e77e395efda0c0ab5bf9c951627c4fcf65c2e32e.tar.bz2 busybox-w32-e77e395efda0c0ab5bf9c951627c4fcf65c2e32e.zip |
Merge branch 'origin/master' (early part)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/keep_data_small.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/keep_data_small.txt b/docs/keep_data_small.txt index 079bac3a6..01c0d3c7b 100644 --- a/docs/keep_data_small.txt +++ b/docs/keep_data_small.txt | |||
@@ -145,6 +145,11 @@ one of above methods is not worth the resulting code obfuscation. | |||
145 | If you have less than ~300 bytes of global data - don't bother. | 145 | If you have less than ~300 bytes of global data - don't bother. |
146 | 146 | ||
147 | 147 | ||
148 | Finding non-shared duplicated strings | ||
149 | |||
150 | strings busybox | sort | uniq -c | sort -nr | ||
151 | |||
152 | |||
148 | gcc's data alignment problem | 153 | gcc's data alignment problem |
149 | 154 | ||
150 | The following attribute added in vi.c: | 155 | The following attribute added in vi.c: |