aboutsummaryrefslogtreecommitdiff
path: root/scripts/objsizes
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-28 22:34:46 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-28 22:34:46 +0000
commit1fec64812228f61d415c401a3bc8919ae28f98a1 (patch)
tree1d309a3e0fc1c6ee254a77ea4d000b503c7a214a /scripts/objsizes
parentf64b811576ab7c80cc80dd4d33f8ecc9fbc2e84d (diff)
downloadbusybox-w32-1fec64812228f61d415c401a3bc8919ae28f98a1.tar.gz
busybox-w32-1fec64812228f61d415c401a3bc8919ae28f98a1.tar.bz2
busybox-w32-1fec64812228f61d415c401a3bc8919ae28f98a1.zip
dpkg: reduce bss usage by ~130 kbytes (yes, kilobytes!)
at the cost of ~100 bytes of text. Improves friendliness to nommu systems. (Dunno whether nommu people ever use dpkg, though...) git-svn-id: svn://busybox.net/trunk/busybox@16253 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rwxr-xr-xscripts/objsizes2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/objsizes b/scripts/objsizes
index ec9928238..4f6576d9a 100755
--- a/scripts/objsizes
+++ b/scripts/objsizes
@@ -4,4 +4,4 @@ printf "%9s %11s %9s %9s %s\n" "text+data" text+rodata rwdata bss filename
4find -name '*.o' | sed 's:^\./::' | xargs size | grep '^ *[0-9]' \ 4find -name '*.o' | sed 's:^\./::' | xargs size | grep '^ *[0-9]' \
5| while read text data bss dec hex filename; do 5| while read text data bss dec hex filename; do
6 printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename" 6 printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename"
7done 7done | sort -r