Install llvm and strip it

This commit is contained in:
Jeremy Soller 2018-12-13 15:40:07 -07:00
parent c4df5d226f
commit f60171e17b
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -61,6 +61,8 @@ function recipe_clean {
}
function recipe_stage {
echo make install
dest="$(realpath $1)"
make DESTDIR="$dest" install
find "$dest"/{bin,libexec} -exec $STRIP {} ';' 2> /dev/null
skip=1
}