mkimage 需要改成下面命令方式更新
sudo apt-get install u-boot-tools
//--------------------------------------------------
对jak的要求就是1.6,高了好像不行,总之对环境要求太严苛了
比一个开源的游戏引擎编译难伺候
//--------------------------------------------------
Make4.0版本过高问题解决
替换的时候注意 which make找到位置 make -v 确认版本
http://www.cnblogs.com/jiuyueguang/p/3156621.html
Android can only be built by versions 3.81 and 3.82
下载地址:ftp://ftp.gnu.org/gnu/make/
make3.8.2的安装步骤:
tar -zxvf make3.8.2.tar.gz
在make-3.8.2目录下
./configure
make
make install
一般情况下不会出现错误,在/usr/local/bin中可得到新版本的make,复制到/usr/bin中
//-------------------------------------------------------
注意事项:java -version 有结果输出,但是 sudo java -version 是无法执行
所以在参照文档操作时候注意没用到sudo的地方不要用sudo,否则也会出错的
//--------------------------------------------------------
就是make 的时候提示jdk版本不正确问题
ubuntu 15.04 Picked up JAVA_TOOL_OPTIONS: -javaagent:/usr/share/java/jayatanaag.jar 问题解决
sudo apt-get remove jayatana
unset JAVA_TOOL_OPTIONS
//----------------------------------------------
Make执行期间碰到
/bin/bash: gperf: command not found
解决办法:
apt-get install gperf
//---------------------------------------------
Make期间遇到问题
Can't locate Switch.pm
解决办法:
http://www.cnblogs.com/yaozhongxiao/p/3811775.html
Installing Switch.pm using the Ubuntu repositories:
From the command-line, the installation can be completed by running the following command from the terminal (Ctrl-Alt-t):
sudo apt-get install libswitch-perl
oWithin Synaptic, right-click on the libswitch-perl package, select Mark for installation, then click on the Apply button.
oWithin the Ubuntu Software Center (USC), search for the phrase libswitch-perl, highlight the package and select install:
Installing Switch.pm using CPAN:
If you would prefer to install this via cpan, follow these instructions:
Open a terminal(Ctrl-Alt-t).
Enter the command cpan.
At the prompt cpan[1]>, type install Switch.
Once completed, Type exit.
The Switch.pm Perl module will now be available for you to use in your scripts.
Ubuntu15.04 Linux环境下安装配置JDK、Eclipse、android studio:http://www.linuxdiyf.com/linux/13086.html
在64位ubuntu15.04中安装android studio开发环境:http://www.linuxdiyf.com/linux/12996.html
在Ubuntu 15.04里安装Visual Studio Code:http://www.linuxdiyf.com/linux/12987.html
64位Ubuntu15.04安装Android Studio教程:http://www.linuxdiyf.com/linux/12081.html
Ubuntu 15.04 Android编译环境:http://www.linuxdiyf.com/linux/11971.html