diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-14 16:23:45 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-14 16:23:45 -0800 |
commit | a6effe0a86e59a656aaa27c01d107d2153f8c825 (patch) | |
tree | c0fe8745c4b56c02c43a1f25c08c7586581e0e05 /tools | |
parent | dbcc4e8d33507117d69fe30e016b1e299f3f847f (diff) |
fix wprintf-related bug that bit fastcomp1.8.11
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 4870fcbb..9cc10e60 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -345,7 +345,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.8.10' +EMSCRIPTEN_VERSION = '1.8.11' def generate_sanity(): return EMSCRIPTEN_VERSION + '|' + get_llvm_target() + '|' + LLVM_ROOT + '|' + get_clang_version() |