(self)
| 259 | |
| 260 | # Gets the wrapper to use for compiler commands, if set. |
| 261 | def compiler_wrapper(self) -> Optional[Path]: |
| 262 | wrapper = self.wrapper |
| 263 | |
| 264 | if self.use_wibo(): |
| 265 | wrapper = self.build_dir / "tools" / "wibo" |
| 266 | if not is_windows() and wrapper is None: |
| 267 | wrapper = Path("wine") |
| 268 | |
| 269 | return wrapper |
| 270 | |
| 271 | # Determines whether or not to use wibo as the compiler wrapper. |
| 272 | def use_wibo(self) -> bool: |
no test coverage detected