diff --git a/recipes/llvm/recipe.sh b/recipes/llvm/recipe.sh
index 4d413d9e2d2f66637ae26e837c66ace8486e09a8..a2c285b003137e549ff90c0648eb48dc14448141 100644
--- a/recipes/llvm/recipe.sh
+++ b/recipes/llvm/recipe.sh
@@ -73,6 +73,6 @@ function recipe_clean {
 function recipe_stage {
     dest="$(realpath $1)"
     make DESTDIR="$dest" install
-    find "$dest"/bin -exec $STRIP {} ';' 2> /dev/null
+    find "$dest"/{bin,lib} -exec $STRIP {} ';' 2> /dev/null
     skip=1
 }