Check for no undefined references.
(binary)
| 152 | return False |
| 153 | |
| 154 | def check_MACHO_NOUNDEFS(binary) -> bool: |
| 155 | ''' |
| 156 | Check for no undefined references. |
| 157 | ''' |
| 158 | return binary.header.has(lief.MachO.HEADER_FLAGS.NOUNDEFS) |
| 159 | |
| 160 | def check_MACHO_LAZY_BINDINGS(binary) -> bool: |
| 161 | ''' |