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 | |
parent | 5fe8d5b9c5930497ecf47817ec3af66bebec52c0 (diff) | |
download | busybox-w32-06a81d368eea88428fbce186f1e01a16673066b7.tar.gz busybox-w32-06a81d368eea88428fbce186f1e01a16673066b7.tar.bz2 busybox-w32-06a81d368eea88428fbce186f1e01a16673066b7.zip |
- patch from Denis Vlasenko to make sizes PHONY and to add objsizes which prints
the sizes of the individual object files.
-rw-r--r-- | Makefile | 6 | ||||
-rwxr-xr-x | scripts/objsizes | 8 |
2 files changed, 14 insertions, 0 deletions
@@ -136,6 +136,7 @@ help: | |||
136 | @echo ' randconfig - generate a random configuration' | 136 | @echo ' randconfig - generate a random configuration' |
137 | @echo ' release - create a distribution tarball' | 137 | @echo ' release - create a distribution tarball' |
138 | @echo ' sizes - show size of all enabled busybox symbols' | 138 | @echo ' sizes - show size of all enabled busybox symbols' |
139 | @echo ' objsizes - show size of each .o object built' | ||
139 | @echo | 140 | @echo |
140 | 141 | ||
141 | 142 | ||
@@ -349,9 +350,14 @@ check test: busybox | |||
349 | bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ | 350 | bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ |
350 | $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) | 351 | $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) |
351 | 352 | ||
353 | .PHONY: sizes | ||
352 | sizes: busybox_unstripped | 354 | sizes: busybox_unstripped |
353 | $(NM) --size-sort $(<) | 355 | $(NM) --size-sort $(<) |
354 | 356 | ||
357 | .PHONY: objsizes | ||
358 | objsizes: busybox_unstripped | ||
359 | $(SHELL) $(top_srcdir)/scripts/objsizes | ||
360 | |||
355 | # Documentation Targets | 361 | # Documentation Targets |
356 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html | 362 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html |
357 | 363 | ||
diff --git a/scripts/objsizes b/scripts/objsizes new file mode 100755 index 000000000..291285f03 --- /dev/null +++ b/scripts/objsizes | |||
@@ -0,0 +1,8 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | printf "%9s %11s %9s %9s %s\n" "text+data" text+rodata rwdata bss filename | ||
4 | find -name '*.o' | sed 's:^\./::' | xargs size | grep '^ *[0-9]' \ | ||
5 | | while read text data bss dec hex filename; do | ||
6 | printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename" | ||
7 | done \ | ||
8 | | sort | ||