diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-26 10:10:25 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-26 10:10:25 +0000 |
commit | 06a81d368eea88428fbce186f1e01a16673066b7 (patch) | |
tree | 4994d059a1a7f5cce8f152a436418cb1359b2a26 /scripts/objsizes | |
parent | 5fe8d5b9c5930497ecf47817ec3af66bebec52c0 (diff) | |
download | busybox-06a81d368eea88428fbce186f1e01a16673066b7.tar.gz |
- patch from Denis Vlasenko to make sizes PHONY and to add objsizes which prints
the sizes of the individual object files.
Diffstat (limited to 'scripts/objsizes')
-rwxr-xr-x | scripts/objsizes | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/objsizes b/scripts/objsizes new file mode 100755 index 000000000..291285f03 --- /dev/null +++ b/scripts/objsizes @@ -0,0 +1,8 @@ +#!/bin/sh + +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 \ +| sort |