From 86e1cc90caf265463df92187926ce20bf5d8c85e Mon Sep 17 00:00:00 2001 From: Emmet Hikory Date: Fri, 19 Dec 2014 12:28:28 +0000 Subject: Support armv8l, armv8b, aarch64, and aarch64b Also add support to allow building compatible architectures on armv8 machines, as per the rationale in the comment in _validate_architecture(). --- morphlib/util.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'morphlib/util.py') diff --git a/morphlib/util.py b/morphlib/util.py index e7a8a50e..63e85b6c 100644 --- a/morphlib/util.py +++ b/morphlib/util.py @@ -465,6 +465,10 @@ def get_host_architecture(): # pragma: no cover 'i686': 'x86_32', 'armv7l': 'armv7l', 'armv7b': 'armv7b', + 'armv8l': 'armv8l', + 'armv8b': 'armv8b', + 'aarch64': 'aarch64', + 'aarch64b': 'aarch64b', 'ppc64': 'ppc64' } -- cgit v1.2.1