Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android系統教程 >> 安卓省電與加速 >> 啟用ccache加速編譯android源代碼

啟用ccache加速編譯android源代碼

編輯:安卓省電與加速

當你刪掉out/target目錄或者使用make clean清空輸出重新編譯源碼的時候,編譯時間通常都很漫長。
其實這個問題很容易解決,Android官方為我們帶來了解決方案–ccache編譯器緩存。官方這麼講:
You can optionally tell the build to use the ccache compilation tool. Ccache acts as a compiler cache that can be used to speed-up rebuilds. This works very well if you do “make clean” often, or if you frequently switch between different build products.

 

設置方法:
在你home主目錄的.bashrc中加入:

export USE_CCACHE=1

如果你需要指定一個特殊的緩存目錄,也需要在.bashrc中加入,不指定則為你當前用戶目錄下的.ccache。

export CCACHE_DIR=/home/mokee/.ccache

在MoKee OpenSource主目錄中運行,50G~100G之間手動指定:

prebuilts/misc/linux-x86/ccache/ccache -M 50G

大功告成,開始編譯吧!

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved