()
| 99 | |
| 100 | |
| 101 | def machine_target(): |
| 102 | raw = platform.machine() |
| 103 | raw_lower = raw.lower() |
| 104 | if raw_lower == "x86_64" or raw_lower == "amd64": |
| 105 | return "x64" |
| 106 | if raw_lower == "aarch64": |
| 107 | return "arm64" |
| 108 | return raw |
| 109 | |
| 110 | |
| 111 | V8_PATH = Path(__file__).parents[2] |
no outgoing calls
no test coverage detected
searching dependent graphs…