We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9605bc commit d5f5da8Copy full SHA for d5f5da8
builder/main.py
@@ -14,6 +14,7 @@
14
15
# pylint: disable=redefined-outer-name
16
17
+import functools
18
import re
19
import sys
20
from os.path import join
@@ -46,6 +47,7 @@ def _parse_size(value):
46
47
return value
48
49
50
+@functools.lru_cache(maxsize=None)
51
def _parse_ld_sizes(ldscript_path):
52
assert ldscript_path
53
result = {}
0 commit comments