upload android base code part3
This commit is contained in:
parent
71b83c22f1
commit
b9e30e05b1
15122 changed files with 2089659 additions and 0 deletions
15
android/build/make/core/multilib.mk
Normal file
15
android/build/make/core/multilib.mk
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Translate LOCAL_32_BIT_ONLY to LOCAL_MULTILIB,
|
||||
# and check LOCAL_MULTILIB is a valid value. Returns module's multilib
|
||||
# setting in my_module_multilib, or empty if not set.
|
||||
|
||||
my_module_multilib := $(strip $(LOCAL_MULTILIB))
|
||||
|
||||
ifndef my_module_multilib
|
||||
ifeq ($(LOCAL_32_BIT_ONLY),true)
|
||||
my_module_multilib := 32
|
||||
endif
|
||||
else # my_module_multilib defined
|
||||
ifeq (,$(filter 32 64 first both none,$(my_module_multilib)))
|
||||
$(error $(LOCAL_PATH): Invalid LOCAL_MULTILIB specified for module $(LOCAL_MODULE))
|
||||
endif
|
||||
endif # my_module_multilib defined
|
Loading…
Add table
Add a link
Reference in a new issue