057aaea54a
Instead of using recursive make to change the HOST_OS when building the windows SDK under linux, add the concept of cross-building to another host os. Bug: 23566667 Change-Id: I6dc525b601b6251d458d197c30bf4660d7485502
15 lines
537 B
Makefile
15 lines
537 B
Makefile
# 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
|