aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-31 20:40:20 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-31 20:40:20 +0000
commitd1a302b52f11563240db5313344a1331613e1538 (patch)
tree8c432cbb270e68bc2ea9d638fc183949ee5f0f8d /scripts
parent50ddabc8592a528c84f236467f4febe9795e2d6b (diff)
downloadbusybox-w32-d1a302b52f11563240db5313344a1331613e1538.tar.gz
busybox-w32-d1a302b52f11563240db5313344a1331613e1538.tar.bz2
busybox-w32-d1a302b52f11563240db5313344a1331613e1538.zip
rt_names: stop allocating 5k in rwdata
objsizes: don't show build machinery's object modules
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/objsizes3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/objsizes b/scripts/objsizes
index 4f6576d9a..ff1c6ed10 100755
--- a/scripts/objsizes
+++ b/scripts/objsizes
@@ -1,7 +1,8 @@
1#!/bin/sh 1#!/bin/sh
2 2
3printf "%9s %11s %9s %9s %s\n" "text+data" text+rodata rwdata bss filename 3printf "%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' | grep -v '^\./scripts/' | grep -vF built-in.o \
5| sed 's:^\./::' | xargs size | grep '^ *[0-9]' \
5| while read text data bss dec hex filename; do 6| while read text data bss dec hex filename; do
6 printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename" 7 printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename"
7done | sort -r 8done | sort -r