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

objsizes « scripts - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f6576d9a27e166e5ed46fbfaa6af0ceb5cbbffb (plain)
1
2
3
4
5
6
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