Merge "strip.sh: Fix argument to llvm-strip" am: f56e89f160
am: bb25e168f3
Change-Id: Ia482420c954b80b584654a7f89ab3abf1eaa3185
This commit is contained in:
commit
64ae76dc85
|
@ -140,7 +140,7 @@ do_add_gnu_debuglink() {
|
|||
|
||||
do_remove_build_id() {
|
||||
if [ -z "${use_gnu_strip}" ]; then
|
||||
"${CLANG_BIN}/llvm-strip" -remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.no-build-id"
|
||||
"${CLANG_BIN}/llvm-strip" --remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.no-build-id"
|
||||
else
|
||||
"${CROSS_COMPILE}strip" --remove-section=.note.gnu.build-id "${outfile}.tmp" -o "${outfile}.tmp.no-build-id"
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue