forked from openkylin/platform_build
am 1599ddd0: am 0d205521: Merge "Enforce 64-bit build environment" into gingerbread
Merge commit '1599ddd08529465aef8f205bd6fce28f16d2ec37' * commit '1599ddd08529465aef8f205bd6fce28f16d2ec37': Enforce 64-bit build environment
This commit is contained in:
commit
56997a98c3
13
core/main.mk
13
core/main.mk
|
@ -64,12 +64,23 @@ include $(BUILD_SYSTEM)/config.mk
|
|||
# be generated correctly
|
||||
include $(BUILD_SYSTEM)/cleanbuild.mk
|
||||
|
||||
VERSION_CHECK_SEQUENCE_NUMBER := 1
|
||||
VERSION_CHECK_SEQUENCE_NUMBER := 2
|
||||
-include $(OUT_DIR)/versions_checked.mk
|
||||
ifneq ($(VERSION_CHECK_SEQUENCE_NUMBER),$(VERSIONS_CHECKED))
|
||||
|
||||
$(info Checking build tools versions...)
|
||||
|
||||
ifeq ($(BUILD_OS),linux)
|
||||
build_arch := $(shell uname -m)
|
||||
ifneq (64,$(findstring 64,$(build_arch)))
|
||||
$(warning ************************************************************)
|
||||
$(warning You are attempting to build on a 32-bit system.)
|
||||
$(warning Only 64-bit build environments are supported now.)
|
||||
$(warning ************************************************************)
|
||||
$(error stop)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ($(HOST_OS),windows)
|
||||
ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
|
||||
# check for a case sensitive file system
|
||||
|
|
Loading…
Reference in New Issue