基于Copyright2010SonyCorporation.ppt

  1. 1、本文档共46页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Android System Programming Tips and Tricks Tim Bird Sony Network Entertainment, Inc. tim.bird (at) Overview Intro to Android Working with Source Interacting with the Target Debug and Trace tools Performance tools Random thoughts on Android Resources Intro to Android Google runtime on top of Linux Android device proliferation Working With Source Working with Source Git Repo Build System Building fast Adding a program to the build Git Android open source project uses git You need to learn to use git well, really Need to know how to do a git rebase especially for kernel patches git rebase -i Kernel patch rebase needed for moving kernel versions, porting work, etc. Lots of online resources Recommended online book: /book/ Repo Export REPO_TRACE=1 is handy to see what git commands are happening Repo tricks Repo forall -c git diff remote_branch Repo forall -c echo $REPO_PATH;git remote -v Use to see upstream remotes from which to compare and merge with. Repo manifest -r -o my-tag-file.xml Make a repository snapshot manifest Build system Lots of interesting stuff in build/envsetup.sh help choosecombo/lunch jgrep/cgrep godir Interesting make targets: showcommands – psuedo-target to show build commands sdk – can build the SDK from scratch Fast building Parallel make threads make -j6 Use 2 more than your number of CPUs (include hyperthreaded CPUs) Compiled output cache ccache is in /prebuilt area export USE_CCACHE=1 Great for rebuilds (21 minutes on my desktop) Make only a specific module mm – build only the module(s) in the current directory (and below) I usually combine with a custom install script, which copies from out/target/product/board Adding a program to the build Make a directory under external e.g. android/external/myprogram Create your C/cpp files. Create Android.mk as clone of external/ping/Android.mk Change the names ping.c and ping to match your C/cpp files and program name Add the directory name in ANDROID/build/core/main.mk after external/zlib as externa

您可能关注的文档

文档评论(0)

aa15090828118 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档