Lines Matching refs:APP_ABI
143 # Check that the value of APP_ABI corresponds to known ABIs
147 # the value of APP_ABI is the user enforces it on the command-line
148 # with a call like: ndk-build APP_ABI=all
150 # Because GNU Make makes the APP_ABI variable read-only (any assignments
153 APP_ABI := $(strip $(APP_ABI))
154 ifndef APP_ABI
156 APP_ABI := armeabi
158 ifneq ($(APP_ABI),all)
162 $(call __ndk_info,Please fix the APP_ABI definition in $(_application_mk))