diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-01-20 12:12:09 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-01-20 12:59:12 -0800 |
commit | f7101c51ae61b52ba56e4240a649cb0a1582e990 (patch) | |
tree | 677ecaaecec4d8d654eccea1a6d4efb195d749e9 | |
parent | 13548a538ae581411841506884c28f1be223079c (diff) | |
download | binaryen-f7101c51ae61b52ba56e4240a649cb0a1582e990.tar.gz binaryen-f7101c51ae61b52ba56e4240a649cb0a1582e990.tar.bz2 binaryen-f7101c51ae61b52ba56e4240a649cb0a1582e990.zip |
further fix for not having vanilla llvm workable locally
-rwxr-xr-x | check.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -421,8 +421,9 @@ if has_vanilla_emcc: if out.strip() != expected.strip(): fail(out, expected) finally: - del os.environ['LLVM'] - if not has_vanilla_llvm: + if has_vanilla_llvm: + del os.environ['LLVM'] + else: del os.environ['EMCC_WASM_BACKEND'] print '\n[ checking example testcases... ]\n' |