diff options
author | ngld <ngld@tproxy.de> | 2013-09-25 17:44:57 +0200 |
---|---|---|
committer | ngld <ngld@tproxy.de> | 2013-09-25 17:44:57 +0200 |
commit | 2370dd4b6f32b9be38c736b3060ba690a720483f (patch) | |
tree | 462a0fb98310853dae2e00a5df8c8528b3fcf222 /tools | |
parent | 8481d3023417529839067af4dca9c5484b69c309 (diff) |
Fix some comments and bump EMSCRIPTEN_VERSION
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gen_struct_info.py | 4 | ||||
-rw-r--r-- | tools/shared.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/gen_struct_info.py b/tools/gen_struct_info.py index 6c479747..aab128eb 100644 --- a/tools/gen_struct_info.py +++ b/tools/gen_struct_info.py @@ -37,7 +37,7 @@ The JSON input format is as follows: 'defines': [ 'DEFINE_1', 'DEFINE_2', - ['li', 'FLOAT_DEFINE'], + ['f', 'FLOAT_DEFINE'], 'DEFINE_3', ... ] @@ -92,7 +92,7 @@ except ImportError: show('WARN: pycparser isn\'t available. I won\'t be able to parse C files, only .json files.') def parse_header(path, cpp_opts): - # Tell the user how to get pycparser, if he tries to parse a C file. + # Tell the user how to get pycparser, if he or she tries to parse a C file. sys.stderr.write('ERR: I need pycparser to process C files. \n') sys.stderr.write(' Use "pip install pycparser" to install or download it from "https://github.com/eliben/pycparser".\n') sys.exit(1) diff --git a/tools/shared.py b/tools/shared.py index 554813ee..53f83185 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -304,7 +304,7 @@ def find_temp_directory(): # we re-check sanity when the settings are changed) # We also re-check sanity and clear the cache when the version changes -EMSCRIPTEN_VERSION = '1.5.9' +EMSCRIPTEN_VERSION = '1.5.10' def generate_sanity(): return EMSCRIPTEN_VERSION + '|' + get_llvm_target() + '|' + LLVM_ROOT |