diff options
author | Ben Smith <binjimin@gmail.com> | 2017-01-31 17:16:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-31 17:16:19 -0800 |
commit | 4fdbb4647c519a42f3e54ed7a858194780ca2ae4 (patch) | |
tree | 3aebad7746c492930c32786061c655bb017fdc81 /scripts/gen-emscripten-exported-json.py | |
parent | edb3a471bc249855d5ece45dc21ee69af700b19b (diff) | |
download | wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.tar.gz wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.tar.bz2 wabt-4fdbb4647c519a42f3e54ed7a858194780ca2ae4.zip |
Rename all wasm prefixes to wabt (#298)
Diffstat (limited to 'scripts/gen-emscripten-exported-json.py')
-rwxr-xr-x | scripts/gen-emscripten-exported-json.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/gen-emscripten-exported-json.py b/scripts/gen-emscripten-exported-json.py index 6e563680..0b23c0ee 100755 --- a/scripts/gen-emscripten-exported-json.py +++ b/scripts/gen-emscripten-exported-json.py @@ -21,8 +21,6 @@ import os import re import sys -from utils import Executable, Error - SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) ROOT_DIR = os.path.dirname(SCRIPT_DIR) TEST_DIR = os.path.join(ROOT_DIR, 'test') @@ -30,13 +28,15 @@ DEFAULT_EMSCRIPTEN_DIR = os.path.join(ROOT_DIR, 'emscripten') sys.path.append(TEST_DIR) +from utils import Executable, Error # noqa: E402 + def FindFiles(cmake_build_dir): result = [] for root, dirs, files in os.walk(cmake_build_dir): for file_ in files: path = os.path.join(root, file_) - if file_ == 'libwasm.a' or re.search(r'wasm-emscripten-helpers', file_): + if file_ == 'libwabt.a' or re.search(r'emscripten-helpers', file_): result.append(path) return result @@ -61,9 +61,9 @@ def ProcessFile(nm, file_): # line looks like: # # -------- d yycheck - # -------- t wasm_strndup_ - # U wasm_parse_int64 - # -------- T wasm_offsetof_allocator_alloc + # -------- t wabt_strndup_ + # U wabt_parse_int64 + # -------- T wabt_offsetof_allocator_alloc # # we want to only keep the "T" names; the extern function symbols defined # in the object. |