2585|0

854

帖子

0

TA的资源

五彩晶圆(中级)

楼主
 

如何加快android系统编译 [复制链接]

转载时请注明出处和作者联系方式
文章出处:http://www.limodev.cn/blog
作者联系方式:李先静 <xianjimli@gmail.com>


习惯了automake之后,再用Android的编译系统,就是感觉不爽。编译一个小模块也等上几分钟,有次实在受不了,看了一下它的实现,发现它对任何一次编译都要查找所有的Android.mk:

subdir_makefiles=$(shell cat build/tools/Android.mk.cache)

我把build/core/main.mk修改了一下,增加了一个cache:

subdir_makefiles=$(shell cat build/tools/Android.mk.cache)  ifeq ($(subdir_makefiles),)  $(info "no cache. create build/tools/Android.mk.cache")  $(shell build/tools/findleaves.sh --prune="./out" . Android.mk > build/tools/Android.mk.cache)  subdir_makefiles=$(shell cat build/tools/Android.mk.cache)  else  $(info "use cache: build/tools/Android.mk.cache")  endif

或者:


487 ifneq ($(ONE_SHOT_MAKEFILE),)

488 else

489 ifneq ($(CASH_MK),true)

490     subdir_makefiles += \

491     $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.       git $(subdirs) Android.mk)

492 else

493     subdir-makefiles-cash := $(shell cat build/subdir_mk_cash)

494

495 ifeq ($(subdir-makefiles-cash),)

496     $(warning No .mk cash ,create now !)

497     subdir_makefiles += \

498     $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.       git $(subdirs) Android.mk)

499     mk-to-file := $(shell echo $(subdir_makefiles) > build/                     subdir_mk_cash)

500 else

501     $(warning Using cash mk !)

502     subdir_makefiles := $(shell cat build/subdir_mk_cash)

503 endif

504 endif

505 endif



速度终于可以接受了。

点赞 关注
个人签名如果对linux,Android,wince 等嵌入式底层有兴趣的,请加这个QQ群吧,群号:27100460

回复
举报
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/8 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表