8bc4c438bd
In the future to upgrade the gcc version we just need to edit one line in core/config.mk. Change-Id: I01bb38c38f2388913bb7369aa4b2da480411dfbe
108 lines
4 KiB
Makefile
108 lines
4 KiB
Makefile
# ---------------------------------------------------------------
|
|
# the setpath shell function in envsetup.sh uses this to figure out
|
|
# what to add to the path given the config we have chosen.
|
|
ifeq ($(CALLED_FROM_SETUP),true)
|
|
|
|
ifneq ($(filter /%,$(HOST_OUT_EXECUTABLES)),)
|
|
ABP:=$(HOST_OUT_EXECUTABLES)
|
|
else
|
|
ABP:=$(PWD)/$(HOST_OUT_EXECUTABLES)
|
|
endif
|
|
|
|
# Add the ARM toolchain bin dir if it actually exists
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
ifneq ($(wildcard $(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-linux-androideabi-$(TARGET_GCC_VERSION)/bin),)
|
|
# this should be copied to HOST_OUT_EXECUTABLES instead
|
|
ABP:=$(ABP):$(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-linux-androideabi-$(TARGET_GCC_VERSION)/bin
|
|
endif
|
|
ifneq ($(wildcard $(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-eabi-$(TARGET_GCC_VERSION)/bin),)
|
|
# this should be copied to HOST_OUT_EXECUTABLES instead
|
|
ABP:=$(ABP):$(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-eabi-$(TARGET_GCC_VERSION)/bin
|
|
endif
|
|
else ifeq ($(TARGET_ARCH),x86)
|
|
|
|
# Add the x86 toolchain bin dir if it actually exists
|
|
ifneq ($(wildcard $(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/x86/i686-linux-android-$(TARGET_GCC_VERSION)/bin),)
|
|
# this should be copied to HOST_OUT_EXECUTABLES instead
|
|
ABP:=$(ABP):$(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/x86/i686-linux-android-$(TARGET_GCC_VERSION)/bin
|
|
endif
|
|
endif
|
|
|
|
# Add the mips toolchain bin dir if it actually exists
|
|
ifneq ($(wildcard $(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/mips/mipsel-linux-android-$(TARGET_GCC_VERSION)/bin),)
|
|
# this should be copied to HOST_OUT_EXECUTABLES instead
|
|
ABP:=$(ABP):$(PWD)/prebuilts/gcc/$(HOST_PREBUILT_TAG)/mips/mipsel-linux-android-$(TARGET_GCC_VERSION)/bin
|
|
endif
|
|
|
|
ANDROID_BUILD_PATHS := $(ABP)
|
|
ANDROID_PREBUILTS := prebuilt/$(HOST_PREBUILT_TAG)
|
|
ANDROID_GCC_PREBUILTS := prebuilts/gcc/$(HOST_PREBUILT_TAG)
|
|
|
|
# The "dumpvar" stuff lets you say something like
|
|
#
|
|
# CALLED_FROM_SETUP=true \
|
|
# make -f config/envsetup.make dumpvar-TARGET_OUT
|
|
# or
|
|
# CALLED_FROM_SETUP=true \
|
|
# make -f config/envsetup.make dumpvar-abs-HOST_OUT_EXECUTABLES
|
|
#
|
|
# The plain (non-abs) version just dumps the value of the named variable.
|
|
# The "abs" version will treat the variable as a path, and dumps an
|
|
# absolute path to it.
|
|
#
|
|
dumpvar_goals := \
|
|
$(strip $(patsubst dumpvar-%,%,$(filter dumpvar-%,$(MAKECMDGOALS))))
|
|
ifdef dumpvar_goals
|
|
|
|
ifneq ($(words $(dumpvar_goals)),1)
|
|
$(error Only one "dumpvar-" goal allowed. Saw "$(MAKECMDGOALS)")
|
|
endif
|
|
|
|
# If the goal is of the form "dumpvar-abs-VARNAME", then
|
|
# treat VARNAME as a path and return the absolute path to it.
|
|
absolute_dumpvar := $(strip $(filter abs-%,$(dumpvar_goals)))
|
|
ifdef absolute_dumpvar
|
|
dumpvar_goals := $(patsubst abs-%,%,$(dumpvar_goals))
|
|
ifneq ($(filter /%,$($(dumpvar_goals))),)
|
|
DUMPVAR_VALUE := $($(dumpvar_goals))
|
|
else
|
|
DUMPVAR_VALUE := $(PWD)/$($(dumpvar_goals))
|
|
endif
|
|
dumpvar_target := dumpvar-abs-$(dumpvar_goals)
|
|
else
|
|
DUMPVAR_VALUE := $($(dumpvar_goals))
|
|
dumpvar_target := dumpvar-$(dumpvar_goals)
|
|
endif
|
|
|
|
.PHONY: $(dumpvar_target)
|
|
$(dumpvar_target):
|
|
@echo $(DUMPVAR_VALUE)
|
|
|
|
endif # dumpvar_goals
|
|
|
|
ifneq ($(dumpvar_goals),report_config)
|
|
PRINT_BUILD_CONFIG:=
|
|
endif
|
|
|
|
endif # CALLED_FROM_SETUP
|
|
|
|
|
|
ifneq ($(PRINT_BUILD_CONFIG),)
|
|
HOST_OS_EXTRA:=$(shell python -c "import platform; print(platform.platform())")
|
|
$(info ============================================)
|
|
$(info PLATFORM_VERSION_CODENAME=$(PLATFORM_VERSION_CODENAME))
|
|
$(info PLATFORM_VERSION=$(PLATFORM_VERSION))
|
|
$(info TARGET_PRODUCT=$(TARGET_PRODUCT))
|
|
$(info TARGET_BUILD_VARIANT=$(TARGET_BUILD_VARIANT))
|
|
$(info TARGET_BUILD_TYPE=$(TARGET_BUILD_TYPE))
|
|
$(info TARGET_BUILD_APPS=$(TARGET_BUILD_APPS))
|
|
$(info TARGET_ARCH=$(TARGET_ARCH))
|
|
$(info TARGET_ARCH_VARIANT=$(TARGET_ARCH_VARIANT))
|
|
$(info HOST_ARCH=$(HOST_ARCH))
|
|
$(info HOST_OS=$(HOST_OS))
|
|
$(info HOST_OS_EXTRA=$(HOST_OS_EXTRA))
|
|
$(info HOST_BUILD_TYPE=$(HOST_BUILD_TYPE))
|
|
$(info BUILD_ID=$(BUILD_ID))
|
|
$(info OUT_DIR=$(OUT_DIR))
|
|
$(info ============================================)
|
|
endif
|