We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36c2944 commit 074dd10Copy full SHA for 074dd10
build_ios.sh
@@ -23,7 +23,7 @@ function build_lame()
23
24
./configure \
25
CFLAGS="-arch ${PLATFORM} -pipe -std=c99 ${BITCODE} -isysroot ${SDK_ROOT} -miphoneos-version-min=${MIN_VERSION}" \
26
- --host="arm-apple-darwin9" \
+ --host="${HOST}-apple-darwin" \
27
--enable-static \
28
--disable-decoder \
29
--disable-frontend \
@@ -36,12 +36,18 @@ function build_lame()
36
}
37
38
# bulid simulator version
39
+HOST="i686"
40
SDK="iPhoneSimulator"
-PLATFORM="i686"
41
BITCODE="-fembed-bitcode-maker"
42
+
43
+PLATFORM="i386"
44
+build_lame
45
46
+PLATFORM="x86_64"
47
build_lame
48
49
# build device version
50
+HOST="arm"
51
SDK="iPhoneOS"
52
BITCODE="-fembed-bitcode"
53
0 commit comments