mirror of https://github.com/ARMmbed/mbed-os.git
parent
921631d70a
commit
815b9bfde6
|
@ -274,9 +274,13 @@ class MemapParser(object):
|
|||
section = '.data'
|
||||
elif test_re_armcc.group(3) == 'Zero':
|
||||
section = '.bss'
|
||||
elif test_re_armcc.group(3) == 'Code':
|
||||
section = '.text'
|
||||
else:
|
||||
print "Malformed input found when parsing armcc map: %s" %\
|
||||
line
|
||||
print "Malformed input found when parsing armcc map: %s, %r" %\
|
||||
(line, test_re_armcc.groups())
|
||||
|
||||
return ["", 0, ""]
|
||||
|
||||
# check name of object or library
|
||||
object_name = self.parse_object_name_armcc(\
|
||||
|
|
Loading…
Reference in New Issue