mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #12933 from JanneKiiskila/armc-anon-mem-fix
Backport Arm C static RAM fix to Mbed OS 5.15 (#12462) (Mbed OS 5.15)pull/12946/head
commit
f7861e6e47
|
@ -280,7 +280,10 @@ class _ArmccParser(_Parser):
|
||||||
""" # noqa: E501
|
""" # noqa: E501
|
||||||
test_re = re.match(self.RE, line)
|
test_re = re.match(self.RE, line)
|
||||||
|
|
||||||
if test_re:
|
if (
|
||||||
|
test_re
|
||||||
|
and "ARM_LIB_HEAP" not in line
|
||||||
|
):
|
||||||
size = int(test_re.group(2), 16)
|
size = int(test_re.group(2), 16)
|
||||||
|
|
||||||
if test_re.group(4) == 'RO':
|
if test_re.group(4) == 'RO':
|
||||||
|
|
Loading…
Reference in New Issue