diff options
author | erikchen@chromium.org <erikchen@chromium.org> | 2015-04-22 20:14:24 +0000 |
---|---|---|
committer | erikchen@chromium.org <erikchen@chromium.org> | 2015-04-22 20:14:24 +0000 |
commit | aa75fa5d4ebff1511c6b5e638ba99534c00255c7 (patch) | |
tree | 72eff951d44ec79b45cd3db0f56d6c2cdbcbe0f4 /src/tools/mac/dump_syms | |
parent | [MIPS]: Use mcontext_t structure for MIPS (diff) | |
download | breakpad-aa75fa5d4ebff1511c6b5e638ba99534c00255c7.tar.xz |
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
Diffstat (limited to 'src/tools/mac/dump_syms')
-rw-r--r-- | src/tools/mac/dump_syms/dump_syms_tool.mm | 4 |
1 files changed, 2 insertions, 2 deletions
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); |