Index: build/toolchain/gcc_toolchain.gni |
diff --git a/build/toolchain/gcc_toolchain.gni b/build/toolchain/gcc_toolchain.gni |
index ecdad866f46e3c41b31c695a79b7b5578e93ebf0..11753343accb33652dba166c83363c7899ce86ae 100644 |
--- a/build/toolchain/gcc_toolchain.gni |
+++ b/build/toolchain/gcc_toolchain.gni |
@@ -201,7 +201,8 @@ template("gcc_toolchain") { |
command = "$ld {{ldflags}} -o $unstripped_outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group $libs_section_prefix {{libs}} $libs_section_postfix" |
if (defined(invoker.strip)) { |
strip = invoker.strip |
- strip_command = "${strip} --strip-unneeded -o $outfile $unstripped_outfile" |
+ strip_command = |
+ "${strip} --strip-unneeded -o $outfile $unstripped_outfile" |
command += " && " + strip_command |
} |
if (defined(invoker.postlink)) { |