am 3c60c67a
: Merge from open-source gingerbread
* commit '3c60c67ad2a157f5bfb731accfc74f5b42c69851': Relax the constraint of 64bit build environment.
This commit is contained in:
commit
c1efb06045
2 changed files with 6 additions and 11 deletions
|
@ -270,6 +270,12 @@ else
|
||||||
HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
|
HOST_JDK_TOOLS_JAR:= $(shell $(BUILD_SYSTEM)/find-jdk-tools-jar.sh)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Is the host JDK 64-bit version?
|
||||||
|
HOST_JDK_IS_64BIT_VERSION :=
|
||||||
|
ifneq ($(filter 64-Bit, $(shell java -version 2>&1)),)
|
||||||
|
HOST_JDK_IS_64BIT_VERSION := true
|
||||||
|
endif
|
||||||
|
|
||||||
# It's called md5 on Mac OS and md5sum on Linux
|
# It's called md5 on Mac OS and md5sum on Linux
|
||||||
ifeq ($(HOST_OS),darwin)
|
ifeq ($(HOST_OS),darwin)
|
||||||
MD5SUM:=md5 -q
|
MD5SUM:=md5 -q
|
||||||
|
|
11
core/main.mk
11
core/main.mk
|
@ -70,17 +70,6 @@ ifneq ($(VERSION_CHECK_SEQUENCE_NUMBER),$(VERSIONS_CHECKED))
|
||||||
|
|
||||||
$(info Checking build tools versions...)
|
$(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 beyond froyo/2.2.)
|
|
||||||
$(warning ************************************************************)
|
|
||||||
$(error stop)
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq ($(HOST_OS),windows)
|
ifneq ($(HOST_OS),windows)
|
||||||
ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
|
ifneq ($(HOST_OS)-$(HOST_ARCH),darwin-ppc)
|
||||||
# check for a case sensitive file system
|
# check for a case sensitive file system
|
||||||
|
|
Loading…
Reference in a new issue