1,打开环境变量中配置的ndk-path所在的目录
2,依次进入 build-core-build-local.mk
3,找到NDK_APP_OUT
NDK_APP_OUT := $(strip $(NDK_OUT)) ifndef NDK_APP_OUT ifeq (null,$(NDK_PROJECT_PATH)) $(call __ndk_info,NDK_PROJECT_PATH==null. Please explicitly set NDK_OUT to directory for all generated intermediate files.) $(call __ndk_error,Aborting.) endif NDK_APP_OUT := D:\leoworkspace\..... #NDK_APP_OUT := $(NDK_PROJECT_PATH)/obj endif $(call ndk_log,Ouput path for intermediate files: $(NDK_APP_OUT)) # Place all generated library files here. This is rarely changed since aapt expects the default libs/ NDK_APP_LIBS_OUT := $(strip $(NDK_LIBS_OUT))
转载请注明原文地址: https://ju.6miu.com/read-14639.html