Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit c80e11c

Browse files
committed
disable asm for libtheora on android lts releases
1 parent 879a786 commit c80e11c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

build/android-libtheora.sh

+7
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ if [[ ${RECONF_libtheora} -eq 1 ]]; then
4343
autoreconf_library ${LIB_NAME}
4444
fi
4545

46+
if [[ -z ${MOBILE_FFMPEG_LTS_BUILD} ]]; then
47+
ASM_FLAGS="--enable-asm"
48+
else
49+
ASM_FLAGS="--disable-asm"
50+
fi
51+
4652
./configure \
4753
--prefix=${BASEDIR}/prebuilt/android-$(get_target_build)/${LIB_NAME} \
4854
--with-pic \
@@ -52,6 +58,7 @@ fi
5258
--disable-examples \
5359
--disable-telemetry \
5460
--disable-sdltest \
61+
${ASM_FLAGS} \
5562
--disable-valgrind-testing \
5663
--host=${TARGET_HOST} || exit 1
5764

0 commit comments

Comments
 (0)