(self, arch)
| 49 | self.binarys.append(FI) |
| 50 | |
| 51 | def getBinary(self, arch): |
| 52 | |
| 53 | for item in self.binarys: |
| 54 | if item.cpu_type == CPU_TYPE_X8664: |
| 55 | return item |
| 56 | elif item.cpu_type == CPU_TYPE_ARM64: |
| 57 | return item |
| 58 | return None |
| 59 | |
| 60 | class FatInfo: |
| 61 | def __init__(self, data): |