歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux技術 >> ubuntu 編譯vlc android 總結

ubuntu 編譯vlc android 總結

日期:2017/3/3 13:13:24   编辑:Linux技術
出錯問題:
1. 提示gettext版本不對
[code]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
解壓後進入目錄,執行如下目錄
[code]./configure
make
make install (權限不夠加sudo即可)

2.
由於是虛擬機中裝的ubuntu系統,建立共享文件後,ubuntu中打開共享文件時,提示“您無訪問。。的權限”
[code]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
解決辦法 :
[code]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
Copyright © Linux教程網 All Rights Reserved