Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-Android
Commits
3dc3d51d
Commit
3dc3d51d
authored
Mar 10, 2015
by
Jean-Baptiste Kempf
Browse files
Don't build ANW for < 64 bits
parent
836ef27a
Changes
1
Hide whitespace changes
Inline
Side-by-side
compile-libvlc.sh
View file @
3dc3d51d
...
...
@@ -602,14 +602,15 @@ VLC_CONTRIB="$VLC_SRC_DIR/contrib/$TARGET_TUPLE"
if
[
"
${
CHROME_OS
}
"
!=
"1"
]
;
then
if
[
"
${
HAVE_64
}
"
!=
1
]
;
then
# Can't link with 32bits symbols.
# Not a problem since MediaCodec should work on 64bits devices (android-21)
LIBIOMX_LIBS
=
"libiomx.14 libiomx.13 libiomx.10"
# Can't link with 32bits symbols.
# Not a problem since MediaCodec should work on 64bits devices (android-21)
LIBIOMX_LIBS
=
"libiomx.14 libiomx.13 libiomx.10"
LIBANW_LIBS
=
"libanw.10 libanw.13 libanw.14 libanw.18"
fi
# (after android Jelly Bean, we prefer to use MediaCodec instead of iomx)
#LIBIOMX_LIBS="${LIBIOMX_LIBS }libiomx.19 libiomx.18"
LIBANW_LIBS
=
"
libanw.10 libanw.13 libanw.14 libanw.18
libanw.21"
LIBANW_LIBS
=
"
$LIBANW_LIBS
libanw.21"
fi
echo
"Building NDK"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment