Get emscripten C compiler command. Returns: Path to emcc script, or clang-tool-chain wrapper as fallback.
()
| 165 | |
| 166 | |
| 167 | def get_emcc() -> str: |
| 168 | """ |
| 169 | Get emscripten C compiler command. |
| 170 | |
| 171 | Returns: |
| 172 | Path to emcc script, or clang-tool-chain wrapper as fallback. |
| 173 | """ |
| 174 | setup_emscripten_env() |
| 175 | if _fast_emcc is not None: |
| 176 | return _fast_emcc |
| 177 | return "clang-tool-chain-emcc" |
| 178 | |
| 179 | |
| 180 | def get_emar() -> str: |
no test coverage detected