Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3143)

Unified Diff: build/toolchain/gcc_toolchain.gni

Issue 2974163002: Fix the stack script issue when symbolizing tombstones. (Closed)
Patch Set: address John's comments Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/toolchain/gcc_toolchain.gni
diff --git a/build/toolchain/gcc_toolchain.gni b/build/toolchain/gcc_toolchain.gni
index 60aee313af4a054d9704e3628e9d8fb9ea6b48e6..dd51e91b2de1432f779293fbcb718179f8a4fd1b 100644
--- a/build/toolchain/gcc_toolchain.gni
+++ b/build/toolchain/gcc_toolchain.gni
@@ -356,6 +356,10 @@ template("gcc_toolchain") {
if (defined(invoker.strip)) {
unstripped_sofile = "{{root_out_dir}}/lib.unstripped/$soname"
+ if (!defined(runtime_outputs)) {
+ runtime_outputs = []
+ }
+ runtime_outputs += [ unstripped_sofile ]
} else {
unstripped_sofile = sofile
}

Powered by Google App Engine
This is Rietveld 408576698