-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathbuild-libdsm.sh
119 lines (94 loc) · 3.23 KB
/
build-libdsm.sh
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#!/bin/bash
# Global build settings
export SDKPATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk
export SIMSDKPATH=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk
export MIN_IOS_VERSION=7.0
export HOST=arm-apple-darwin
export LDFLAGS_NATIVE="-isysroot $SDKPATH"
export LDFLAGS_SIMULATOR="-isysroot $SIMSDKPATH"
export TASN1_CFLAGS="-Ilibtasn1/include"
export TASN1_LIBS="-Llibtasn1 -ltasn1"
export ARCHES=(armv7 armv7s arm64 i386 x86_64)
# libtasn1 defines
export TASN1_URL="https://ftp.gnu.org/gnu/libtasn1/libtasn1-4.12.tar.gz"
export TASN1_DIR_NAME="libtasn1-4.12"
# libdsm defines
export DSM_URL="https://github.com/videolabs/libdsm/releases/download/v0.2.8/libdsm-0.2.8.tar.gz"
export DSM_DIR_NAME="libdsm-0.2.8"
######################################################################
echo "Checking libtasn1..."
# Download the latest libtasn1 library
if [ ! -d $TASN1_DIR_NAME ]; then
echo "Downloading libtasn1..."
curl -o $TASN1_DIR_NAME.tar.gz $TASN1_URL
gunzip -c $TASN1_DIR_NAME.tar.gz | tar xopf -
fi
echo "... Done"
echo "Checking libdsm..."
# Download the latest version of libdsm
if [ ! -d $DSM_DIR_NAME ]; then
echo "Downloading libdsm..."
curl -L -J -O $DSM_URL
gunzip -c $DSM_DIR_NAME.tar.gz | tar xopf -
fi
echo "...Done"
######################################################################
#Build tasn1
#Remove the previous build of libtasn1 from libdsm
rm -rf $DSM_DIR_NAME/libtasn1
cd $TASN1_DIR_NAME
rm -rf build
#Build libtasn1 for each architecture
for i in "${ARCHES[@]}"
do
build_files="$build_files build/$i/lib/libtasn1.a"
export ARCH=$i
if [[ $i == *"arm"* ]]
then
export LDFLAGS=$LDFLAGS_NATIVE
else
export LDFLAGS=$LDFLAGS_SIMULATOR
fi
export CFLAGS="-arch $ARCH $LDFLAGS -miphoneos-version-min=$MIN_IOS_VERSION -fembed-bitcode -Wno-sign-compare"
./configure --host=$HOST --prefix=$PWD/build/$ARCH && make && make install
make clean
done
echo $build_files
#Merge the compiled binaries into a single universal one
mkdir -p build/universal
lipo -create $build_files -output build/universal/libtasn1.a
echo "Copying Headers Across"
#Copy headers across
mkdir build/universal/include
cp -R build/armv7/include build/universal/
cd ../
#Copy binary to libdsm folder for its build process
cp -R $TASN1_DIR_NAME/build/universal $DSM_DIR_NAME/libtasn1
######################################################################
#Build libdsm
cd $DSM_DIR_NAME
rm -rf build
build_files=""
for i in "${ARCHES[@]}"
do
build_files="$build_files build/$i/lib/libdsm.a"
export ARCH=$i
if [[ $i == *"arm"* ]]
then
export LDFLAGS=$LDFLAGS_NATIVE
else
export LDFLAGS=$LDFLAGS_SIMULATOR
fi
export CFLAGS="-arch $ARCH $LDFLAGS -miphoneos-version-min=$MIN_IOS_VERSION -fembed-bitcode -DNDEBUG -Wno-sign-compare"
./bootstrap
./configure --host=$HOST --prefix=$PWD/build/$ARCH && make && make install
make clean
done
#Merge the compiled binaries into a single universal one
mkdir -p build/universal
lipo -create $build_files -output build/universal/libdsm.a
#Copy headers across
mkdir build/universal/include
cp -R build/armv7/include build/universal
#Move final product to parent directory
cp -R build/universal ../libdsm