(self)
| 200 | class X8664BinutilsBuilder(StandardBinutilsBuilder): |
| 201 | def __init__(self) -> None: |
| 202 | super().__init__() |
| 203 | |
| 204 | self.extra_targets.append('x86_64-pep') |
| 205 | self.native_arch = 'x86_64' |
| 206 | self.target = 'x86_64-linux-gnu' |
| 207 | |
| 208 | |
| 209 | class BinutilsSourceManager(SourceManager): |
| 210 | def default_targets(self) -> list[str]: |
| 211 | targets = [ |
| 212 | 'aarch64', |
| 213 | 'arm', |
| 214 | 'mips', |
| 215 | 'mipsel', |
| 216 | 'powerpc', |
| 217 | 'powerpc64', |
| 218 | 'powerpc64le', |
| 219 | 'riscv64', |
| 220 | 's390x', |
nothing calls this directly
no outgoing calls
no test coverage detected