From de675be862d61d4d91e5072e525a39c53755d949 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Thu, 5 Nov 2015 09:31:09 +0000 Subject: [PATCH] Fix Mac symbol dumping. --- tools/buildbot/BreakpadSymbols | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildbot/BreakpadSymbols b/tools/buildbot/BreakpadSymbols index 2d8a7b1b..58b725dd 100644 --- a/tools/buildbot/BreakpadSymbols +++ b/tools/buildbot/BreakpadSymbols @@ -16,7 +16,7 @@ for cxx_task in cxx_tasks: if builder.target_platform == 'linux': argv = ['dump_syms', debug_file, os.path.dirname(debug_file)] elif builder.target_platform == 'mac': - argv = ['dump_syms', debug_file] + argv = ['dump_syms', '-g', debug_file + '.dSYM', debug_file] elif builder.target_platform == 'windows': argv = ['dump_syms.exe', debug_file]