This makes it simpler to reference normal host modules by just their original names even if they are built for the 2nd arch. Change-Id: I49d32dad0dc523c458d5f9176993037d8695e6a5
48 lines
1.2 KiB
Makefile
48 lines
1.2 KiB
Makefile
my_prefix := HOST_
|
|
include $(BUILD_SYSTEM)/multilib.mk
|
|
|
|
ifndef LOCAL_MODULE_HOST_ARCH
|
|
ifndef my_module_multilib
|
|
ifeq ($(HOST_PREFER_32_BIT),true)
|
|
my_module_multilib := 32
|
|
else
|
|
# By default we only build host module for the first arch.
|
|
my_module_multilib := first
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(my_module_multilib),both)
|
|
LOCAL_NO_2ND_ARCH_MODULE_SUFFIX := true
|
|
endif
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
|
include $(BUILD_SYSTEM)/host_shared_library_internal.mk
|
|
endif
|
|
|
|
ifdef HOST_2ND_ARCH
|
|
LOCAL_2ND_ARCH_VAR_PREFIX := $(HOST_2ND_ARCH_VAR_PREFIX)
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
ifeq ($(my_module_arch_supported),true)
|
|
# Build for HOST_2ND_ARCH
|
|
OVERRIDE_BUILT_MODULE_PATH :=
|
|
LOCAL_BUILT_MODULE :=
|
|
LOCAL_INSTALLED_MODULE :=
|
|
LOCAL_INTERMEDIATE_TARGETS :=
|
|
|
|
include $(BUILD_SYSTEM)/host_shared_library_internal.mk
|
|
endif
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
|
endif # HOST_2ND_ARCH
|
|
|
|
LOCAL_NO_2ND_ARCH_MODULE_SUFFIX :=
|
|
my_module_arch_supported :=
|
|
|
|
###########################################################
|
|
## Copy headers to the install tree
|
|
###########################################################
|
|
include $(BUILD_COPY_HEADERS)
|