mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-04-24 00:00:05 +08:00
Squashed 'Sources/OpenVPNAdapter/Libraries/Vendors/openvpn/' content from commit 554d8b888
git-subtree-dir: Sources/OpenVPNAdapter/Libraries/Vendors/openvpn git-subtree-split: 554d8b88817d3a7b836e78940ed61bb11ed2bd9b
This commit is contained in:
Executable
+27
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
[ "$DEP_DIR" ] && cd $DEP_DIR
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf minicrypto
|
||||
mkdir minicrypto
|
||||
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' Minicrypto-32 $target
|
||||
TARGET=$target ARCH=i386 $O3/core/deps/minicrypto/build-minicrypto-osx
|
||||
echo '***************' Minicrypto-64 $target
|
||||
TARGET=$target ARCH=x86_64 $O3/core/deps/minicrypto/build-minicrypto-osx
|
||||
cd minicrypto/minicrypto-$target
|
||||
lipo -create */libminicrypto.a -output libminicrypto.a
|
||||
lipo -info libminicrypto.a
|
||||
cd ../..
|
||||
done
|
||||
exit 0
|
||||
Reference in New Issue
Block a user