目錄html
工做須要,想着恰好有個趁手的兵器(Mac),雖然作好充足的功課,可是這場編譯之旅仍是十分曲折android
本文主要記錄本人使用macOs( 10.14) 在本地 checkout 出 AOSP ,並進行編譯,導入 Android Studio 的完整經歷。git
爲什麼分區:github
如何分區:shell
hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 250g ~/android.dmg
//下載repo $ mkdir ~/bin $ PATH=~/bin:$PATH $ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo $ chmod a+x ~/bin/repo //初始化 repo,使用清華鏡像 $ repo init -u https://aosp.tuna.tsinghua.edu.cn/platform/manifest -b android-9.0.0_r3 // 下載源碼,開啓4個併發 $ repo sync -j4
$ ulimit -S -n 1024
// 清除緩存 make clobber // 初始化環境 source build/envsetup.sh // 打包瀏覽器 mmm packages/apps/Browser2/ // or 自動生成依賴 mmma packages/apps/Browser2/
//根目錄下執行,環境設置命令 source build/envsetup.sh // 選擇編譯的源碼類型 lunch // 能夠選擇1. aosp_arm-eng 或2. aosp_arm64-eng 1 //查看本機CPU 核數, machdep.cpu.thread_count sysctl machdep.cpu //編譯,使用核數的兩倍, 這個耗時也就,差很少6個小時 make -j16 //啓動虛擬機 emulator
source build/envsetup.sh // 將執行文件設置爲臨時變量 mmm development/tools/idegen/ //生成idegen.jar文件 // 結果: [100% 5/5] Install: out/host/darwin-x86/framework/idegen.jar #### build completed successfully (07:31 (mm:ss)) ####
development/tools/idegen/idegen.sh //結果 Read excludes: 83ms Traversed tree: 1886971ms
- android.ipr : 保存工程相關的設置 - android.iml : 用來描述 modules
// 項目 所有項目導入,一兩個小時還完成不了,所以精簡下 // 修改 android.iml 的excludeFolder, 只保留 frameworks 和 package 包 <excludeFolder url="file://$MODULE_DIR$/prebuilt" /> <excludeFolder url="file://$MODULE_DIR$/.repo"/> <excludeFolder url="file://$MODULE_DIR$/frameworks/base/docs"/> <excludeFolder url="file://$MODULE_DIR$/art"/> <excludeFolder url="file://$MODULE_DIR$/bionic"/> <excludeFolder url="file://$MODULE_DIR$/bootable"/> <excludeFolder url="file://$MODULE_DIR$/build"/> <excludeFolder url="file://$MODULE_DIR$/compatibility"/> <excludeFolder url="file://$MODULE_DIR$/cts"/> <excludeFolder url="file://$MODULE_DIR$/dalvik"/> <excludeFolder url="file://$MODULE_DIR$/developers"/> <excludeFolder url="file://$MODULE_DIR$/development"/> <excludeFolder url="file://$MODULE_DIR$/device"/> <excludeFolder url="file://$MODULE_DIR$/external"/> <excludeFolder url="file://$MODULE_DIR$/hardware"/> <excludeFolder url="file://$MODULE_DIR$/kernel"/> <excludeFolder url="file://$MODULE_DIR$/libcore"/> <excludeFolder url="file://$MODULE_DIR$/libnativehelper"/> <excludeFolder url="file://$MODULE_DIR$/ndk"/> <excludeFolder url="file://$MODULE_DIR$/out"/> <excludeFolder url="file://$MODULE_DIR$/pdk"/> <excludeFolder url="file://$MODULE_DIR$/platform_testing"/> <excludeFolder url="file://$MODULE_DIR$/prebuilts"/> <excludeFolder url="file://$MODULE_DIR$/projectFilesBackup"/> <excludeFolder url="file://$MODULE_DIR$/sdk"/> <excludeFolder url="file://$MODULE_DIR$/system"/> <excludeFolder url="file://$MODULE_DIR$/test"/> <excludeFolder url="file://$MODULE_DIR$/toolchain"/> <excludeFolder url="file://$MODULE_DIR$/tools"/>
問題:
本機 mac 10.14.3, 執行編譯報 "Could not find a supported mac sdk: [「10.10」 「10.11」 「10.12」 「10.13」] "api
網上的解決之道:
x86_darwin_host.go 文件新增 "10.14"系統,讓其支持android-studio
找到 build/soong/cc/config/x86_darwin_host.go 修改 darwinSupportedSdkVersions = []string{ "10.10", "10.11", "10.12", "10.13", "10.14",
後遺症:
這麼改完後,不報這個問題了,可是問題轉移了,成爲下面那個問題了。瀏覽器
本機 mac 10.14, 實際上是不支持 i386 架構,強行修改不行,搜索千百度,終於在 Google 論壇的 Android Building 組裏面看到一些有用信息緩存
I have solved this issue.You can download MacOSX10.13.sdk on https://github.com/phracker/MacOSX-SDKs/releases and copy it to /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
簡述之:bash
整個工程耗時耗力,也算是本身的一場磨難。