(self)
| 270 | |
| 271 | # Determines whether or not to use wibo as the compiler wrapper. |
| 272 | def use_wibo(self) -> bool: |
| 273 | return ( |
| 274 | self.wibo_tag is not None |
| 275 | and sys.platform == "linux" |
| 276 | and platform.machine() in ("i386", "x86_64") |
| 277 | and self.wrapper is None |
| 278 | ) |
| 279 | |
| 280 | |
| 281 | def is_windows() -> bool: |
no outgoing calls
no test coverage detected