From aa75fa5d4ebff1511c6b5e638ba99534c00255c7 Mon Sep 17 00:00:00 2001 From: "erikchen@chromium.org" Date: Wed, 22 Apr 2015 20:14:24 +0000 Subject: Support object files larger than 2**32. Reviewed at https://breakpad.appspot.com/7834002/#ps340001 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1453 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/tools/mac/dump_syms/dump_syms_tool.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/mac') diff --git a/src/tools/mac/dump_syms/dump_syms_tool.mm b/src/tools/mac/dump_syms/dump_syms_tool.mm index 1880cd3b..7d56809a 100644 --- a/src/tools/mac/dump_syms/dump_syms_tool.mm +++ b/src/tools/mac/dump_syms/dump_syms_tool.mm @@ -126,14 +126,14 @@ static bool Start(const Options &options) { fprintf(stderr, "%s: no architecture '%s' is present in file.\n", [primary_file fileSystemRepresentation], options.arch->name); size_t available_size; - const struct fat_arch *available = + const SuperFatArch *available = dump_symbols.AvailableArchitectures(&available_size); if (available_size == 1) fprintf(stderr, "the file's architecture is: "); else fprintf(stderr, "architectures present in the file are:\n"); for (size_t i = 0; i < available_size; i++) { - const struct fat_arch *arch = &available[i]; + const SuperFatArch *arch = &available[i]; const NXArchInfo *arch_info = google_breakpad::BreakpadGetArchInfoFromCpuType( arch->cputype, arch->cpusubtype); -- cgit v1.2.1