(self)
| 592 | return [] |
| 593 | |
| 594 | def get_specialized_compiler(self): |
| 595 | if _get_machine() in ("aarch64", "mips64", "loongarch64"): |
| 596 | # We have no prebuilt Clang for arm64, mips64 or loongarch64 on Linux, |
| 597 | # so use the system Clang instead. |
| 598 | return ["clang_base_path = \"/usr\"", "clang_use_chrome_plugins = false"] |
| 599 | return [] |
| 600 | |
| 601 | def get_sandbox_flag(self): |
| 602 | if self.arch in SANDBOX_SUPPORTED_ARCHES: |
no test coverage detected