Skip to content

Commit a9bd33e

Browse files
Merge pull request #5103 from theotherjimmy/fix-memap-libs
Parse libraries with memap-arm
2 parents af50e8f + 7eccec4 commit a9bd33e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/memap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ def parse_object_name_armcc(self, line):
269269

270270
else:
271271

272-
RE_OBJECT_ARMCC = r'(.+\.l)\((.+\.o)\)'
272+
RE_OBJECT_ARMCC = r'(.+\.(l|ar))\((.+\.o)\)'
273273
test_re_obj_name = re.match(RE_OBJECT_ARMCC, line)
274274

275275
if test_re_obj_name:

0 commit comments

Comments
 (0)