(self)
| 283 | |
| 284 | # Determines whether or not to use wibo as the compiler wrapper. |
| 285 | def use_wibo(self) -> bool: |
| 286 | return ( |
| 287 | self.wibo_tag is not None |
| 288 | and sys.platform == "linux" |
| 289 | and platform.machine() in ("i386", "x86_64") |
| 290 | and self.wrapper is None |
| 291 | ) |
| 292 | |
| 293 | |
| 294 | def is_windows() -> bool: |
no outgoing calls
no test coverage detected