am 3ba88e7d: am b7fe2e62: am f7683b81: Merge "Clearly explain that 32-bit x86 is not supported"
* commit '3ba88e7d2dbc7f4d52202d58614cdcd566539455': Clearly explain that 32-bit x86 is not supported
This commit is contained in:
commit
e84a275061
|
@ -72,6 +72,10 @@ ifneq (,$(findstring x86_64,$(UNAME)))
|
||||||
HOST_ARCH := x86_64
|
HOST_ARCH := x86_64
|
||||||
HOST_2ND_ARCH := x86
|
HOST_2ND_ARCH := x86
|
||||||
HOST_IS_64_BIT := true
|
HOST_IS_64_BIT := true
|
||||||
|
else
|
||||||
|
ifneq (,$(findstring x86,$(UNAME)))
|
||||||
|
$(error Building on a 32-bit x86 host is not supported: $(UNAME)!)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
BUILD_ARCH := $(HOST_ARCH)
|
BUILD_ARCH := $(HOST_ARCH)
|
||||||
|
|
Loading…
Reference in New Issue