From a4321ad117f07fdee6a62472a6c29b84922021f9 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott <ian@iandouglasscott.com> Date: Mon, 12 Jun 2017 12:46:49 -0700 Subject: [PATCH] Strip only executables, not libraries Striping crt* was causing issues. --- recipes/gcc/recipe.sh | 2 +- recipes/gnu-binutils/recipe.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/gcc/recipe.sh b/recipes/gcc/recipe.sh index a42b08935..fd82c1a28 100644 --- a/recipes/gcc/recipe.sh +++ b/recipes/gcc/recipe.sh @@ -52,6 +52,6 @@ function recipe_clean { function recipe_stage { dest="$(realpath $1)" make DESTDIR="$dest" install-gcc install-target-libgcc - find "$dest" -exec x86_64-elf-redox-strip {} ';' 2> /dev/null + find "$dest/{bin,libexec}" -exec x86_64-elf-redox-strip {} ';' 2> /dev/null skip=1 } diff --git a/recipes/gnu-binutils/recipe.sh b/recipes/gnu-binutils/recipe.sh index 1a5fbe2af..8bbe558c9 100644 --- a/recipes/gnu-binutils/recipe.sh +++ b/recipes/gnu-binutils/recipe.sh @@ -42,6 +42,6 @@ function recipe_clean { function recipe_stage { dest="$(realpath $1)" make DESTDIR="$dest" install - find "$dest" -exec x86_64-elf-redox-strip {} ';' 2> /dev/null + find "$dest/bin" -exec x86_64-elf-redox-strip {} ';' 2> /dev/null skip=1 } -- GitLab