Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 55d4a46f authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Detect `uname -m` == i686 as a 32-bit host"

parents 1767d3f9 88225fdf
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -78,7 +78,7 @@ ifneq (,$(findstring x86_64,$(UNAME)))
  HOST_2ND_ARCH := x86
  HOST_2ND_ARCH := x86
  HOST_IS_64_BIT := true
  HOST_IS_64_BIT := true
else
else
ifneq (,$(findstring x86,$(UNAME)))
ifneq (,$(findstring i686,$(UNAME))$(findstring x86,$(UNAME)))
$(error Building on a 32-bit x86 host is not supported: $(UNAME)!)
$(error Building on a 32-bit x86 host is not supported: $(UNAME)!)
endif
endif
endif
endif