加快Android編譯速度
#
# Include all of the makefiles in the system
#
# Can't use first-makefiles-under here because
# --mindepth=2 makes the prunes not work.
#subdir_makefiles := \
# $(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git $(subdirs) Android.mk)
Android_mk_cache:= build/tools/Android.mk.cache.2
$(shell touch $(Android_mk_cache))
subdir_makefiles:=$(shell cat $(Android_mk_cache))
$(info subdir_makefiles ====== $(subdir_makefiles))
ifeq ($(strip $(subdir_makefiles)),)
$(info ======================)
$(info no cache. create build/tools/Android.mk.cache)
#$(shell build/tools/findleaves.sh --prune="./out" . Android.mk > build/tools/Android.mk.cache)
$(shell build/tools/findleaves.py --prune=out --prune=.repo --prune=.git $(subdirs) Android.mk > $(Android_mk_cache))
subdir_makefiles:=$(shell cat $(Android_mk_cache))
else
$(info use cache: build/tools/Android.mk.cache)
endif
$(info subdir_makefiles ----------------$(subdir_makefiles))
$(error endddddddddddddddddddd)
相關文章
- 加快Android編譯速度的技巧總結Android編譯
- Android加快編譯速度的另一種方法Android編譯
- 修改gradle屬性,加快Android studio編譯速度GradleAndroid編譯
- 如何加快C++程式碼的編譯速度C++編譯
- 加快apk的構建速度,如何把編譯時間從130秒降到17秒APK編譯
- 優化 Swift 編譯速度優化Swift編譯
- 提高gradle編譯速度Gradle編譯
- 加快apk的構建速度,如何把編譯時間從130秒降到17秒(二)APK編譯
- Android效能優化之加快應用啟動速度Android優化
- maven-編譯速度優化Maven編譯優化
- 優化使用kotlin開發Android app的編譯速度優化KotlinAndroidAPP編譯
- Android效能最佳化之加快應用啟動速度Android
- Java動態編譯優化——提升編譯速度(N倍)Java編譯優化
- Android studio 解決編譯速度慢 Download maven-metadata.xml速度很慢Android編譯MavenXML
- 如何優化 Android Studio 啟動、編譯和執行速度?優化Android編譯
- dll預編譯提高webpack打包速度編譯Web
- 使用 ccache 增加 Xcode 編譯速度XCode編譯
- 如何提高 Xcode 的編譯速度XCode編譯
- webpack編譯速度提升之DllPluginWeb編譯Plugin
- [譯] 使用自定義檔案模板加快你的應用開發速度
- [譯] Kotlin VS Java:編譯速度大比拼KotlinJava編譯
- Effective前端--加快頁面開啟速度前端
- 加快Vue專案的開發速度Vue
- 硬碟提速,加快硬碟速度的辦法硬碟
- 使用ant優化android專案編譯速度,提高工作效率優化Android編譯
- Assimp Android 編譯Android編譯
- 編譯 Android 4.3編譯Android
- Android 編譯 pngAndroid編譯
- android 反編譯Android編譯
- android編譯方法Android編譯
- 【譯】Web 效能優化:21種優化CSS和加快網站速度的方法Web優化CSS網站
- Android反編譯:反編譯工具和方法Android編譯
- Swift語法對編譯速度的影響Swift編譯
- SQL SERVER BACKUP DATABASE 加快備份速度方法SQLServerDatabase
- libusb android ndk編譯--編譯mipsAndroid編譯
- [譯]改善 Android Studio 的構建速度Android
- Android 反編譯指南Android編譯
- Android 增量編譯小解Android編譯