This page is an introduction to the compilation of VLC for Android on Linux.
config for tegra2:
if [ -z "$NO_NEON" ]; then
CXX_TARGET="armeabi-v7a"
CFLAGS="$CFLAGS -mfpu=neon -mtune=cortex-a8 -ftree-vectorize -mvectorize-with-neon-quad"
LDFLAGS="$LDFLAGS -Wl,--fix-cortex-a8"
EXTRA_PARAMS=""
else
CXX_TARGET="armeabi-v7a"
CFLAGS="$CFLAGS -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16 -mthumb-interwork -mfloat-abi=softfp"
EXTRA_PARAMS=" --disable-neon"
fi
阅读(1467) | 评论(0) | 转发(0) |