From e9eae9ce828ab209a076d5da7a0ee63bf7a953af Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jeremy@system76.com>
Date: Sat, 22 Dec 2018 12:48:31 -0700
Subject: [PATCH] Strip libraries as well

---
 recipes/llvm/recipe.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/llvm/recipe.sh b/recipes/llvm/recipe.sh
index 4d413d9e2..a2c285b00 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
 }
-- 
GitLab