public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Small patch to bloat-o-meter.
@ 2006-05-07 19:59 Rob Landley
  2006-05-08  3:02 ` Matt Mackall
  0 siblings, 1 reply; 5+ messages in thread
From: Rob Landley @ 2006-05-07 19:59 UTC (permalink / raw)
  To: mpm, linux-kernel

Workaround for the fact that gcc 4.x no longer provides consistent names for 
static symbols.

Signed-off-by: Rob Landley <rob@landley.net>
---

When I added bloat-o-meter to busybox, I had to fix this to get useful 
results.  Since the kernel version seems to be the master, I thought you 
might be interested.

--- linux-old/scripts/bloat-o-meter	2006-05-07 15:47:23.000000000 -0400
+++ linux-2.6.16/scripts/bloat-o-meter	2006-05-07 15:08:31.000000000 -0400
@@ -18,7 +18,9 @@
     for l in os.popen("nm --size-sort " + file).readlines():
         size, type, name = l[:-1].split()
         if type in "tTdDbB":
-            sym[name] = int(size, 16)
+            if name.find(".") != -1: name = "static." + name.split(".")[0]
+            if name in sym: sym[name] += int(size, 16)
+            else :sym[name] = int(size, 16)
     return sym
 
 old = getsizes(sys.argv[1])


-- 
Never bet against the cheap plastic solution.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-05-08  5:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-05-07 19:59 [PATCH] Small patch to bloat-o-meter Rob Landley
2006-05-08  3:02 ` Matt Mackall
2006-05-08  4:43   ` Rob Landley
2006-05-08  4:48     ` Matt Mackall
2006-05-08  5:11       ` Rob Landley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox