mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-27 03:33:50 +00:00
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 <contact@paulk.fr> Reviewed-on: https://chromium-review.googlesource.com/645086 Commit-Ready: Patrick Georgi <pgeorgi@chromium.org> Tested-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Patrick Georgi <pgeorgi@chromium.org>
This commit is contained in:
committed by
chrome-bot
parent
d2ee3ca7c1
commit
96a0ead803
2
Makefile
2
Makefile
@@ -105,6 +105,8 @@ ifeq (${ARCH},armv7l)
|
|||||||
override ARCH := arm
|
override ARCH := arm
|
||||||
else ifeq (${ARCH},i386)
|
else ifeq (${ARCH},i386)
|
||||||
override ARCH := x86
|
override ARCH := x86
|
||||||
|
else ifeq (${ARCH},i686)
|
||||||
|
override ARCH := x86
|
||||||
else ifeq (${ARCH},amd64)
|
else ifeq (${ARCH},amd64)
|
||||||
override ARCH := x86_64
|
override ARCH := x86_64
|
||||||
endif
|
endif
|
||||||
|
|||||||
Reference in New Issue
Block a user