红联Linux门户
Linux帮助

Ubuntu14.04环境编译vlc源码for安卓Android系统

发布时间:2016-06-27 15:34:57来源:linux网站作者:yagerfgcs

一、准备虚拟机

1、所需软件

deamon:DTLite4491-0356.1394761051.exe

VMware-workstation-full-12.1.0-3272444_for_x64.exe 序列号5A02H-AU243-TZJ49-GTC7K-3C61N

ubuntu-14.04.1-desktop-amd64.iso

2、逐个安装,遇到报虚拟机无法跑长类型的ubuntu,按照错误提示,修改主板cmos参数:Intel VT-x BIOS/固件设置 中 开启

Ubuntu14.04环境编译vlc源码for安卓Android系统


二、参考文档

参考https://wiki.videolan.org/AndroidCompile/ 逐步操作。


三、软件版本

ANDROID_NDK:android-ndk-r11b-linux-x86_64.zip

ANDROID_SDK:adt-bundle-linux-x86_64-20140624.zip

JDK:版本不做限制

vlc_android编译源码:https://code.videolan.org/videolan/vlc-android.git 原来的老目录已失效


四、编译步骤(整个过程均在root权限下执行)

1、设置环境变量:打开.bashrc文件,增加以下环境变量后保存并执行生效

# gedit ~/.bashrc

export NDK=/home/yager/soft/android-ndk-r11b
export ANDROID_NDK=/home/yager/soft/android-ndk-r11b
export ANDROID_SDK=/home/yager/soft/adt-bundle-linux-x86_64-20140624/sdk
export ANDROID_ABI=armeabi-v7a
#export NO_NEON=1
export JAVA_HOME=/home/yager/soft/jdk1.8.0_77
export CLASSPATH=.:$JAVA_HOME/lib:$JAVA_HOME/jre/lib
export PATH=$PATH:$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools:$JAVA_HOME/bin:$JAVA_HOME/jre/bin

# source ~/.bashrc

2、编译前的依赖库环境准备

# sudo apt-get build-dep vlc
# apt-get install git
# apt-get install ant
# apt-get install wget
# apt-get install autoconf
# apt-get install libtool
# apt-get install subversion
注意Linux 64位的朋友需注意官网链接中提到的“ 64-bit users: You must install these 32-bit libs as specified here: https://wiki.videolan.org/AndroidCompile/#Can.27t_run_aapt_or_adb_on_Linux_64-bit Can't run aapt or adb on Linux 64-bit”

You must install the 32-bit libraries of the following libraries, as the precompiled Google binaries depend on them: libc6, libstdc++6, and zlib.

New versions of Debian and/or Ubuntu require you to install i386 versions of packages:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install zlib1g:i386 libstdc++6:i386 libc6:i386

If you are under old versions of Ubuntu, install ia32-libs can help you solve this issue.

sudo apt-get install ia32-libs


五、编译

1、获取源码

https://code.videolan.org/videolan/vlc-android.git

2、执行编译命令

sh compile.sh


六、遇到的问题

a、缺少lua、avcodec相关库

sudo apt-get install lua5.1 liblua5.1-dev

sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libavutil-dev

b、缺少ia32-libs

root@yager-virtual-machine:/home/yager/soft# apt-get install ia32-libs
正在读取软件包列表... 完成
正在分析软件包的依赖关系树      
正在读取状态信息... 完成      
现在没有可用的软件包 ia32-libs,但是它被其它的软件包引用了。
这可能意味着这个缺失的软件包可能已被废弃,
或者只能在其他发布源中找到
可是下列软件包取代了它:
lib32z1 lib32ncurses5 lib32bz2-1.0

解决办法:ubuntu 14.04强制安装ia32-libs
http://www.linuxdiyf.com/linux/15109.html

c、缺少kde4-config

解决办法
使用apt-get install kdelibs-bin命令
或者http://wiki.ubuntu.org.cn/KDE安装全版的KDE 4.5

d、缺少 arm-linux-androideabi-gcc

原因是:ndk 编译链为32位版本,而系统版本为64位

解决办法
sudo apt-get install libc6-dev-i386
sudo apt-get install ia32-libs

e、缺少Build tools 23.0.3以及Support library repository等信息

Build tools 23.0.3 missing. Downloading...
Support library repository missing. Downloading...failed to find Build Tools revision 23.0.3

解决办法:使用Android SDK Manager下载Build tools和Support library repository

方法一:更新代理配置

启动 Android SDK Manager ,打开主界面,依次选择「Tools」、「Options...」,弹出『Android SDK Manager - Settings』窗口;

在『Android SDK Manager - Settings』窗口中,在「HTTP Proxy Server」和「HTTP Proxy Port」输入框内填入 mirrors.neusoft.edu.cn 和 80,并且选中「Force https://... sources to be fetched using http://...」复选框。设置完成后单击「Close」按钮关闭『Android SDK Manager - Settings』窗口返回到主界面;

依次选择「Packages」、「Reload」。

Ubuntu14.04环境编译vlc源码for安卓Android系统

方法二:如果代理不行,可以自己拼接url下载对应库(仅使用该方法下载了build tools23.0.3)

1、点击Android SDK Manager界面右下角的log按钮。打开日志界面

Ubuntu14.04环境编译vlc源码for安卓Android系统

2、将上图中的链接粘贴到浏览器中,浏览器会打开对应的xml,在xml中可以搜索build tool,找到我想要的版本23.0.2对应的linux版本名build-tools_r23.0.2-linux.zip

3、将两个url拼接一下:http://dl-ssl.google.com/android/repository/build-tools_r23.0.2-linux.zip。浏览器打开就可以下载了。


本文永久更新地址:http://www.linuxdiyf.com/linux/21888.html