diff options
author | Lukas Lihotzki <lukas@lihotzki.de> | 2020-09-26 18:23:50 +0200 |
---|---|---|
committer | Lukas Lihotzki <lukas@lihotzki.de> | 2020-09-26 18:23:50 +0200 |
commit | ac61190bb3fae3fa2d143443ed5c97553cc324ed (patch) | |
tree | 4e50256a66d37f6a2cf8aae4fce3ff601bcb5589 | |
parent | 0fd315d54c5c8d1536ef3e7f08d316bd915fe148 (diff) |
fix build with emscripten 2.0.4
-rwxr-xr-x | exports.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ import json expr = re.compile(r"(olm_[^( ]*)\(") -exports = set() +exports = {'_free', '_malloc'} for f in sys.argv[1:]: with open(f) as fp: |