- optionally pass additional flags down to nm

This commit is contained in:
Bernhard Reutner-Fischer 2008-05-23 12:53:18 +00:00
parent 61082ec1cc
commit cf575ca856
2 changed files with 11 additions and 6 deletions

View File

@ -8,7 +8,7 @@
*/
/* BB_AUDIT SUSv3 compliant */
/* http://www.opengroup.org/onlinepubs/007904975/utilities/false.html */
/* http://www.opengroup.org/onlinepubs/000095399/utilities/false.html */
#include "libbb.h"

View File

@ -9,24 +9,29 @@
import sys, os, re
if len(sys.argv) != 3:
def usage():
sys.stderr.write("usage: %s file1 file2\n" % sys.argv[0])
sys.exit(-1)
if len(sys.argv) < 3:
usage()
for f in sys.argv[1], sys.argv[2]:
if not os.path.exists(f):
sys.stderr.write("Error: file '%s' does not exist\n" % f)
sys.exit(-1)
usage()
nm_args = " ".join([x for x in sys.argv[3:]])
def getsizes(file):
sym = {}
for l in os.popen("nm --size-sort " + file).readlines():
for l in os.popen("nm --size-sort %s %s" % (nm_args, file)).readlines():
l = l.strip()
# Skip empty lines
if not len(l.strip()): continue
if not len(l): continue
# Skip archive members
if len(l.split()) == 1 and l.endswith(':'):
continue
size, type, name = l[:-1].split()
size, type, name = l.split()
if type in "tTdDbBrR":
if "." in name: name = "static." + name.split(".")[0]
sym[name] = sym.get(name, 0) + int(size, 16)