forked from openkylin/platform_build
Add extra environment info to build output
This should help us support users with build issues. Given that they inculde the dumpvars in their error report, we will be able to avoid asking standard questions like "what version of Ubuntu are you using?" Change-Id: Ib7c452d805d5e64075a44dc40e41d4605cc1ef4a
This commit is contained in:
parent
9a7419153e
commit
5f1c9ba0b8
|
@ -67,6 +67,7 @@ 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))
|
||||
|
@ -78,6 +79,7 @@ $(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))
|
||||
|
|
Loading…
Reference in New Issue