Lines Matching refs:APP_ABI
100 # Check that the value of APP_ABI corresponds to known ABIs
104 # the value of APP_ABI is the user enforces it on the command-line
105 # with a call like: ndk-build APP_ABI=all
107 # Because GNU Make makes the APP_ABI variable read-only (any assignments
110 APP_ABI := $(strip $(APP_ABI))
111 ifndef APP_ABI
113 APP_ABI := armeabi
115 ifneq ($(APP_ABI),all)
119 $(call __ndk_info,Please fix the APP_ABI definition in $(_application_mk))