diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/mac/crash_report/on_demand_symbol_supplier.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/mac/crash_report/on_demand_symbol_supplier.mm b/src/tools/mac/crash_report/on_demand_symbol_supplier.mm index 99d54faf..edcc5ad7 100644 --- a/src/tools/mac/crash_report/on_demand_symbol_supplier.mm +++ b/src/tools/mac/crash_report/on_demand_symbol_supplier.mm @@ -293,7 +293,7 @@ bool OnDemandSymbolSupplier::GenerateSymbolFile(const CodeModule *module, if (dump.SetArchitecture(architecture)) { std::fstream file([symbol_path fileSystemRepresentation], std::ios_base::out | std::ios_base::trunc); - dump.WriteSymbolFile(file); + dump.WriteSymbolFile(file, true); } else { printf("Architecture %s not available for %s\n", system_info->cpu.c_str(), name.c_str()); |