您的位置:首页 > 移动开发 > Android开发

ubuntu 编译vlc android 总结

2016-05-07 18:53 633 查看
出错问题:

1. 提示gettext版本不对

The AM_GNU_GETTEXT_VERSION declaration in your configure.ac
file requires the infrastructure from gettext-0.19.3 but this version
is older. Please upgrade to gettext-0.19.3 or newer.


gettext -V 差看本地版本低于0.19.3

按要求下载 https://launchpad.net/ubuntu/+source/gettext/0.19.7-2ubuntu3

解压后进入目录,执行如下目录

./configure
make
make install (权限不够加sudo即可)


2.

由于是虚拟机中装的ubuntu系统,建立共享文件后,ubuntu中打开共享文件时,提示“您无访问。。的权限”

sudo usermod -a -G vboxsf yourusernanme


3.

Java RunTime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No java virtual machine was found after searching the following locations:

解决办法是在终端进入你的eclipse目录,然后输入:

mkdir jre

cd jre

ln -s 你的JDK目录/bin bin

4.

configure: error: You need 32-bits luac when using using lua from contrib

解决办法 :

sudo apt-get install liblua5.1-0-dev:i386
sudo apt-get build-dep vlc


参考:http://askubuntu.com/questions/365907/configure-error-you-need-32-bits-luac-when-using-using-lua-from-contrib
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: