forked from openkylin/platform_build
am 493306f7: Merge "Fix TARGET_PREBUILT_TAG so that get_build_var can retrieve the correct value across architectures"
* commit '493306f7c318d632186bebd732708d4299e66a62': Fix TARGET_PREBUILT_TAG so that get_build_var can retrieve the correct value across architectures
This commit is contained in:
commit
554eeb6c74
|
@ -350,4 +350,12 @@ TARGET_AVAILABLE_NDK_VERSIONS := $(call numerically_sort,\
|
|||
|
||||
INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.xml
|
||||
|
||||
# This is the standard way to name a directory containing prebuilt target
|
||||
# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
|
||||
ifeq ($(TARGET_SIMULATOR),true)
|
||||
TARGET_PREBUILT_TAG := $(TARGET_OS)-$(TARGET_ARCH)
|
||||
else
|
||||
TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
|
||||
endif
|
||||
|
||||
include $(BUILD_SYSTEM)/dumpvar.mk
|
||||
|
|
|
@ -158,14 +158,6 @@ ifneq ($(TARGET_BUILD_TYPE),debug)
|
|||
TARGET_BUILD_TYPE := release
|
||||
endif
|
||||
|
||||
# This is the standard way to name a directory containing prebuilt target
|
||||
# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
|
||||
ifeq ($(TARGET_SIMULATOR),true)
|
||||
TARGET_PREBUILT_TAG := $(TARGET_OS)-$(TARGET_ARCH)
|
||||
else
|
||||
TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
|
||||
endif
|
||||
|
||||
# ---------------------------------------------------------------
|
||||
# figure out the output directories
|
||||
|
||||
|
|
Loading…
Reference in New Issue