Merge pull request #21 from ids1024/strip

Strip binaries in gcc and gnu-binutils, for much smaller file size
This commit is contained in:
Jeremy Soller 2017-06-11 22:49:00 -06:00 committed by GitHub
commit b5be7eaa2d
2 changed files with 2 additions and 0 deletions

View File

@ -52,5 +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
skip=1
}

View File

@ -42,5 +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
skip=1
}