发布时间:2012-12-21 14:37:26
在perl的程序当中,有时候会用到当前的系统路径。perl中获取当前李靖有两种方法:1、使用CWD包use Cwd;print getcwd;2、使用环境变量print $ENV{'PWD'}我更倾向于使用环境变量,这样不会引入额外的包3.使用shell命令 print system(“pwd”);......【阅读全文】
发布时间:2012-12-21 11:33:54
yangfeng@yangfeng-desktop:~/RL75_gb2_master$ ./makeMtk e610[cfzz] n**********checking Env************ Your building environment is OK The detail information is in "checkenv.log"!*************************************************2012/12/21 11:03:48 custgening... &n......【阅读全文】
发布时间:2012-12-15 17:09:35
Andriod默认情况下将java代码编译成apk包后都会安装到/system/app目录下,因为system目录最终会打包成system.img文件,即Android的文件系统。在Android里一个java都是以一个apk的形式存在,在系统编译时,Androd会根据每个应用的mk文件里的LOCAL_MODULE_TAGS这个变量的值来决定这个应用是否会编译到系统里,通常情况下LOCAL_MODULE_TAGS变量的值有user optional debug eng tests samples这几个值,在2.2里如果LOCAL_MODULE_TAGS变量的值为user那么系统直接就会将这个应......【阅读全文】