Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/objsizes')
-rwxr-xr-xscripts/objsizes7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/objsizes b/scripts/objsizes
new file mode 100755
index 000000000..4f6576d9a
--- /dev/null
+++ b/scripts/objsizes
@@ -0,0 +1,7 @@
+#!/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 -r