【Android】mac编译android-4.4.2

来源:互联网 发布:淘宝哪家饰品店好 编辑:程序博客网 时间:2024/05/17 09:29
(1)hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 100g ~/workspace/android.dmg

(2)function mountAndroid { hdiutil attach ~/workspace/android.dmg.sparseimage -mountpoint ~/workspace/AndroidDisk; }

(3)Binaries for Nexus Device

(4)build/core/combo/HOST_darwin-x86.mk# $(1): The file to checkdefine get-file-sizestat -f "%z" $(1)endef

# $(1): The file to checkdefine get-file-sizeGSTAT=$(which gstat) ; \if [ ! -z "$GSTAT" ]; then \gstat -c "%s" $(1) ; \else \stat -f "%z" $(1) ; \fiendef

(5)unset NDK_ROOT
(6). build/envsetup.sh
(7)lunch
(8)make clobber
(9)make -j8
(10)adb reboot bootloader
(11)fastboot flashall -w
0 0