Android build stuck #1162
-
I am trying to get a build with the following command. I am also on a Mac. ./android.sh --enable-android-media-codec --enable-android-zlib --full --enable-gpl --disable-lib-libiconv --disable-lib-gmp --disable-lib-lame --disable-lib-libass --disable-lib-libxml2 --disable-lib-rubberband --disable-lib-twolame --disable-lib-tesseract --disable-lib-srt But then running and building the libraries gets stuck in a loop before reaching ffmpeg.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I’m not sure of the exact issue in your case, but I can see that |
Beta Was this translation helpful? Give feedback.
--disable-lib
is not a safe option. It overrides the dependency chain, which is why we haven’t documented it. It’s intended for advanced users only. If--disable-lib
flags conflict with other flags, the build scripts can't continue because an external library required by other options may have been disabled.I’m not sure of the exact issue in your case, but I can see that
gnutls
is being requested whilegmp
is disabled. That will be a problem becausegnutls
depends ongmp
. The scripts don't know how to buildgnutls
withoutgmp
.