We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694cf59 commit 9cb05b5Copy full SHA for 9cb05b5
tools/shared.py
@@ -360,7 +360,8 @@ def set_version_globals():
360
361
362
def generate_sanity():
363
- sanity_file_content = f'{EMSCRIPTEN_VERSION}|{config.LLVM_ROOT}|{get_clang_version()}'
+ llvm_root = os.path.normcase(config.LLVM_ROOT)
364
+ sanity_file_content = f'{EMSCRIPTEN_VERSION}|{llvm_root}|{get_clang_version()}'
365
config_data = utils.read_file(config.EM_CONFIG)
366
checksum = binascii.crc32(config_data.encode())
367
sanity_file_content += '|%#x\n' % checksum
0 commit comments