executable.mk revision dd814bf8c20c4bbc641cc7cb71685c53e92977e1
1# We don't automatically set up rules to build executables for both
2# TARGET_ARCH and TARGET_2ND_ARCH.
3# By default, an executable is built for TARGET_ARCH.
4# To build it for TARGET_2ND_ARCH in a 64bit product, use "LOCAL_32BIT_ONLY := true".
5
6ifeq ($(TARGET_IS_64_BIT)|$(LOCAL_32BIT_ONLY),true|true)
7LOCAL_2ND_ARCH_VAR_PREFIX := $(TARGET_2ND_ARCH_VAR_PREFIX)
8else
9LOCAL_2ND_ARCH_VAR_PREFIX :=
10endif
11
12include $(BUILD_SYSTEM)/executable_internal.mk
13LOCAL_2ND_ARCH_VAR_PREFIX :=
14