projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f867d2a
)
[PATCH] bloat-o-meter: gcc-4 fix
author
Rob Landley
<
[email protected]
>
Sun, 25 Jun 2006 12:47:10 +0000
(
05:47
-0700)
committer
Linus Torvalds
<
[email protected]
>
Sun, 25 Jun 2006 17:01:00 +0000
(10:01 -0700)
Upgrade scripts/bloat-o-meter to handle the names gcc 4 gives static
symbols.
Signed-off-by: Rob Landley <
[email protected]
>
Signed-off-by: Matt Mackall <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
scripts/bloat-o-meter
patch
|
blob
|
history
diff --git
a/scripts/bloat-o-meter
b/scripts/bloat-o-meter
index 75f21d843c1d5f814176bf6d33a37313146ad529..ce59fc2d8de496ee6c12e4032949136a27ee3b62 100755
(executable)
--- a/
scripts/bloat-o-meter
+++ b/
scripts/bloat-o-meter
@@
-18,7
+18,8
@@
def getsizes(file):
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 "." in name: name = "static." + name.split(".")[0]
+ sym[name] = sym.get(name, 0) + int(size, 16)
return sym
old = getsizes(sys.argv[1])