From 96a0ead803c22fb5e55effb9d3a571a4c88f29db Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Thu, 31 Aug 2017 09:32:23 +0300 Subject: Fix arch detection for i686 This adds detection for the i686 arch and replaces it with x86, allowing it to build. BRANCH=none BUG=none TEST=Build host_stuff on an i686 machine Change-Id: Idab7c762a7fbb97ec5318b9aa860756b4dd0bc25 Signed-off-by: Paul Kocialkowski Reviewed-on: https://chromium-review.googlesource.com/645086 Commit-Ready: Patrick Georgi Tested-by: Patrick Georgi Reviewed-by: Aaron Durbin Reviewed-by: Patrick Georgi --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 31f714b8..2fb0fe45 100644 --- a/Makefile +++ b/Makefile @@ -105,6 +105,8 @@ ifeq (${ARCH},armv7l) override ARCH := arm else ifeq (${ARCH},i386) override ARCH := x86 +else ifeq (${ARCH},i686) + override ARCH := x86 else ifeq (${ARCH},amd64) override ARCH := x86_64 endif -- cgit v1.2.1