commit | 2cd8a74b2d380e9c01efb922b57c9293738adbda | [log] [tgz] |
---|---|---|
author | Brian Carlstrom <bdc@google.com> | Fri Mar 20 11:39:00 2015 -0700 |
committer | Brian Carlstrom <bdc@google.com> | Fri Mar 20 12:50:42 2015 -0700 |
tree | e294a3b52dbb94a6e901a5e8b3991f0bdfe013df | |
parent | ad22a8f2a71209d0fec3c49bdd688678a3412540 [diff] [blame] |
Clearly explain that 32-bit x86 is not supported Change-Id: I7f352fae8fa3742c61dc74e20aacd32254451bce
diff --git a/core/envsetup.mk b/core/envsetup.mk index 43774ea..75391e1 100644 --- a/core/envsetup.mk +++ b/core/envsetup.mk
@@ -72,6 +72,10 @@ 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)