diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-24 20:16:50 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-24 20:16:50 -0800 |
commit | ed697ccbcd43f1dc72024c2157a1f8f6f18d9e96 (patch) | |
tree | c461e1f327bbba4e4c23094f896b0ed310b1631c /tools/shared.py | |
parent | d54f3e0e933bbe33906edcb7ea372b829d3242c7 (diff) | |
parent | 1f43e7a9b7011e81a8367b14d8657af61df57651 (diff) |
Merge pull request #2057 from juj/relooper_linkage1.9.5
Fix inconsistent linkage warnings from Visual Studio caused by mismatched dllexport specifiers.
Diffstat (limited to 'tools/shared.py')
-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 665a6d52..f88eace0 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.9.4' +EMSCRIPTEN_VERSION = '1.9.5' def generate_sanity(): return EMSCRIPTEN_VERSION + '|' + get_llvm_target() + '|' + LLVM_ROOT + '|' + get_clang_version() |