-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathffmpeg-build
executable file
·44 lines (36 loc) · 999 Bytes
/
ffmpeg-build
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
#!/bin/sh
set -e
FFMPEG_OPTIONS="${COMMON_OPTIONS%% *} \
--enable-cross-compile \
--disable-lzma \
--disable-securetransport \
--disable-sdl2 \
--disable-debug \
--disable-programs \
--disable-doc \
--enable-pic \
--enable-shared"
if [[ ! `which gas-preprocessor.pl` ]]; then
curl -L https://github.com/libav/gas-preprocessor/raw/master/gas-preprocessor.pl -o /usr/local/bin/gas-preprocessor.pl \
&& chmod +x /usr/local/bin/gas-preprocessor.pl
fi
if [[ "$ARCH" = "arm64" ]]; then
EXPORT="GASPP_FIX_XCODE5=1"
PLATFORM="iPhoneOS"
elif [[ "$ARCH" = "x86_64" ]]; then
PLATFORM="iPhoneSimulator"
fi
XCRUN_SDK=`echo $PLATFORM | tr '[:upper:]' '[:lower:]'`
CC="xcrun -sdk $XCRUN_SDK clang"
if [[ "$ARCH" = "arm64" ]]; then
AS="gas-preprocessor.pl -arch aarch64 -- $CC"
else
AS="gas-preprocessor.pl -- $CC"
fi
$SRC/ffmpeg*/configure $FFMPEG_OPTIONS \
--target-os=darwin \
--arch=$ARCH \
--cc="$CC" \
--as="$AS" \
--extra-cflags="$CFLAGS"
make -j4 install $EXPORT