am f7683b81: Merge "Clearly explain that 32-bit x86 is not supported"

* commit 'f7683b813a7f71313f3dd1f71be1a8ef9d800ebf':
  Clearly explain that 32-bit x86 is not supported
This commit is contained in:
Brian Carlstrom 2015-03-20 22:02:49 +00:00 committed by Android Git Automerger
commit b7fe2e622d
1 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,10 @@ ifneq (,$(findstring x86_64,$(UNAME)))
HOST_ARCH := x86_64
HOST_2ND_ARCH := x86
HOST_IS_64_BIT := true
else
ifneq (,$(findstring x86,$(UNAME)))
$(error Building on a 32-bit x86 host is not supported: $(UNAME)!)
endif
endif
BUILD_ARCH := $(HOST_ARCH)