Get emscripten archiver command. Returns: Path to emar script, or clang-tool-chain wrapper as fallback.
()
| 178 | |
| 179 | |
| 180 | def get_emar() -> str: |
| 181 | """ |
| 182 | Get emscripten archiver command. |
| 183 | |
| 184 | Returns: |
| 185 | Path to emar script, or clang-tool-chain wrapper as fallback. |
| 186 | """ |
| 187 | setup_emscripten_env() |
| 188 | if _fast_emar is not None: |
| 189 | return _fast_emar |
| 190 | return "clang-tool-chain-emar" |
| 191 | |
| 192 | |
| 193 | def ensure_native_tools() -> bool: |
no test coverage detected