From 75bcf7f3373c65455104c4ab7c039bf2d78000d5 Mon Sep 17 00:00:00 2001 From: Tim Zimmermann Date: Thu, 23 Dec 2021 09:26:54 +0100 Subject: [PATCH] extract_utils: disable strip for ELF binaries as well * Just like we do for libraries * Without this some binaries might break Change-Id: Ida82f5ee35f02112eb3a35be66c2f7e1642d56b1 --- extract_utils.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extract_utils.sh b/extract_utils.sh index e46eed3..33ddea9 100644 --- a/extract_utils.sh +++ b/extract_utils.sh @@ -503,6 +503,9 @@ function write_blueprint_packages() { printf '\tsrcs: ["%s/%s"],\n' "$SRC" "$FILE" if [ "$EXTENSION" != "sh" ]; then printf '\tcheck_elf_files: false,\n' + printf '\tstrip: {\n' + printf '\t\tnone: true,\n' + printf '\t},\n' fi unset EXTENSION else