Chromium Code Reviews

Unified Diff: build/linux/dump_app_syms

Issue 14188058: Linux: Change dump_app_syms script to pass -r to dump_syms. This option was added in Breakpad r1163. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/dump_app_syms
===================================================================
--- build/linux/dump_app_syms (revision 195932)
+++ build/linux/dump_app_syms (working copy)
@@ -28,7 +28,7 @@
# Dump the symbols from the given binary.
if [ ! -e "$OUTFILE" -o "$INFILE" -nt "$OUTFILE" ]; then
- "$DUMPSYMS" "$INFILE" > "$OUTFILE"
+ "$DUMPSYMS" -r "$INFILE" > "$OUTFILE"
fi
if [ "$STRIP_BINARY" != "0" ]; then
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine