| ... | @@ -54,7 +54,7 @@ pub fn parse(self: *Dylib, macho_file: *MachO, file: std.fs.File, fat_arch: ?fat | ... | @@ -54,7 +54,7 @@ pub fn parse(self: *Dylib, macho_file: *MachO, file: std.fs.File, fat_arch: ?fat |
| 54 | const gpa = macho_file.base.comp.gpa; | 54 | const gpa = macho_file.base.comp.gpa; |
| 55 | const offset = if (fat_arch) |ar| ar.offset else 0; | 55 | const offset = if (fat_arch) |ar| ar.offset else 0; |
| 56 | | 56 | |
| 57 | log.debug("parsing dylib from binary", .{}); | 57 | log.debug("parsing dylib from binary: {s}", .{self.path}); |
| 58 | | 58 | |
| 59 | var header_buffer: [@sizeOf(macho.mach_header_64)]u8 = undefined; | 59 | var header_buffer: [@sizeOf(macho.mach_header_64)]u8 = undefined; |
| 60 | { | 60 | { |
| ... | @@ -266,7 +266,7 @@ pub fn parseTbd( | ... | @@ -266,7 +266,7 @@ pub fn parseTbd( |
| 266 | | 266 | |
| 267 | const gpa = macho_file.base.comp.gpa; | 267 | const gpa = macho_file.base.comp.gpa; |
| 268 | | 268 | |
| 269 | log.debug("parsing dylib from stub", .{}); | 269 | log.debug("parsing dylib from stub: {s}", .{self.path}); |
| 270 | | 270 | |
| 271 | const umbrella_lib = lib_stub.inner[0]; | 271 | const umbrella_lib = lib_stub.inner[0]; |
| 272 | | 272 | |