diff --git a/bazel/android_debug_info.bzl b/bazel/android_debug_info.bzl index 30a446787a..c6b785ea4e 100644 --- a/bazel/android_debug_info.bzl +++ b/bazel/android_debug_info.bzl @@ -25,9 +25,9 @@ def _impl(ctx): ctx.actions.run_shell( inputs = [lib], outputs = [objdump_output], - command = cc_toolchain.objdump_executable + " --syms " + lib.path + "| gzip -c >" + objdump_output.path, + command = cc_toolchain.objdump_executable + " --dwarf=info --dwarf=rawline " + lib.path + "| gzip -c >" + objdump_output.path, tools = [cc_toolchain.all_files], - progress_message = "Generating symbol map " + platform_name, + progress_message = "Generating symbol mapping file " + platform_name, ) strip_output = ctx.actions.declare_file(platform_name + "/" + lib.basename)