(path)
| 447 | |
| 448 | # Returns the absolute pathname to the given path inside the Emscripten SDK. |
| 449 | def sdk_path(path): |
| 450 | if os.path.isabs(path): |
| 451 | return path |
| 452 | |
| 453 | return to_unix_path(os.path.join(EMSDK_PATH, path)) |
| 454 | |
| 455 | |
| 456 | # Removes a single file, suppressing exceptions on failure. |
no test coverage detected