()
| 260 | |
| 261 | |
| 262 | def check_llvm(): |
| 263 | targets = get_clang_targets() |
| 264 | if 'wasm32' not in targets: |
| 265 | logger.critical('LLVM has not been built with the WebAssembly backend, clang reports:') |
| 266 | print('===========================================================================', file=sys.stderr) |
| 267 | print(targets, file=sys.stderr) |
| 268 | print('===========================================================================', file=sys.stderr) |
| 269 | return False |
| 270 | |
| 271 | return True |
| 272 | |
| 273 | |
| 274 | def get_node_directory(): |
no test coverage detected