- patch from Denis Vlasenko to make sizes PHONY and to add objsizes which prints
the sizes of the individual object files.
This commit is contained in:
8
scripts/objsizes
Executable file
8
scripts/objsizes
Executable file
@ -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
|
Reference in New Issue
Block a user