| ... | @@ -3380,7 +3380,7 @@ fn collectExportData(self: *MachO, trie: *Trie) !void { | ... | @@ -3380,7 +3380,7 @@ fn collectExportData(self: *MachO, trie: *Trie) !void { |
| 3380 | const sym = self.getSymbol(global); | 3380 | const sym = self.getSymbol(global); |
| 3381 | | 3381 | |
| 3382 | if (sym.undf()) continue; | 3382 | if (sym.undf()) continue; |
| 3383 | if (!sym.ext()) continue; | 3383 | assert(sym.ext()); |
| 3384 | | 3384 | |
| 3385 | const sym_name = self.getSymbolName(global); | 3385 | const sym_name = self.getSymbolName(global); |
| 3386 | log.debug(" (putting '{s}' defined at 0x{x})", .{ sym_name, sym.n_value }); | 3386 | log.debug(" (putting '{s}' defined at 0x{x})", .{ sym_name, sym.n_value }); |