From 57308afb5b221c2ccbf7d3accc301fffb31aa7a5 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 28 Sep 2006 22:34:46 +0000 Subject: 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...) --- scripts/objsizes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/objsizes') 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 find -name '*.o' | sed 's:^\./::' | xargs size | grep '^ *[0-9]' \ | while read text data bss dec hex filename; do printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename" -done +done | sort -r -- cgit v1.2.3