diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-31 11:06:14 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-31 11:06:14 -0800 |
commit | c326a24f775f4fda03c6a59f62759c5c7dfa4baa (patch) | |
tree | 08991ea26773ae054d99ec9d500dcd2d4996478c /tools | |
parent | 5c35062c0096625f4d7004e243164de79388bedd (diff) |
make sure rand() returns values only up to RAND_MAX; #18551.10.1
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 bd1d1bee..3b0b92a3 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.10.0' +EMSCRIPTEN_VERSION = '1.10.1' def generate_sanity(): return EMSCRIPTEN_VERSION + '|' + get_llvm_target() + '|' + LLVM_ROOT + '|' + get_clang_version() |