summaryrefslogtreecommitdiff
path: root/taler-ios-build/x64
diff options
context:
space:
mode:
authorJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2022-07-18 23:59:46 -0400
committerJonathan Buchanan <jonathan.russ.buchanan@gmail.com>2022-07-18 23:59:46 -0400
commitaaa00a74c8cd2afdd8205f6f0beecd1f94caafee (patch)
tree0ae8bc07d38c264a5b1b7d7501155e63a48ec665 /taler-ios-build/x64
parent4e5c5a984472426b2d8fc9970b96690842e19740 (diff)
downloadios-node-v8-aaa00a74c8cd2afdd8205f6f0beecd1f94caafee.tar.gz
ios-node-v8-aaa00a74c8cd2afdd8205f6f0beecd1f94caafee.tar.bz2
ios-node-v8-aaa00a74c8cd2afdd8205f6f0beecd1f94caafee.zip
Build with debug symbols and strip them from release binaries
Diffstat (limited to 'taler-ios-build/x64')
-rwxr-xr-xtaler-ios-build/x646
1 files changed, 6 insertions, 0 deletions
diff --git a/taler-ios-build/x64 b/taler-ios-build/x64
index 956ff14d4c..4d5f982983 100755
--- a/taler-ios-build/x64
+++ b/taler-ios-build/x64
@@ -16,3 +16,9 @@ cd $scriptdir
cp ../tools/gyp/pylib/gyp/mac_tool.py ../out-x64/gyp-mac-tool
./build-ios-node x64
+
+# Strip debug symbols from release binaries.
+for i in ../out-x64/Release/*.a; do
+ [ -f "$i" ] || break
+ strip -S $i
+done