1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: =?utf-8?b?SmFuIE1vasW+w63FoQ==?= <jan.mojzis@gmail.com>
Date: Fri, 31 Dec 2021 22:04:17 +0100
Subject: strip libnacl.a before compiling binaries
Forwarded: no
---
do | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/do b/do
index d36f293..d564c9c 100755
--- a/do
+++ b/do
@@ -378,6 +378,12 @@ do
done
done
+okabi \
+| while read abi
+do
+ strip --strip-debug $lib/$abi/*.[oa]
+done
+
for language in c cpp
do
for bintype in commandline tests
|