From d7dec7c8d71b30fea6e4c5aca40adce1724ba87d Mon Sep 17 00:00:00 2001 From: John Paul Adrian Glaubitz Date: Sun, 29 Oct 2017 23:51:14 +0100 Subject: [PATCH] bootstrap: Add missing cputype matching for sparc64 --- src/bootstrap/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index 0ab4c79e3b2..707aceebb1e 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -294,7 +294,7 @@ def default_build_triple(): raise ValueError('unknown byteorder: {}'.format(sys.byteorder)) # only the n64 ABI is supported, indicate it ostype += 'abi64' - elif cputype == 'sparcv9': + elif cputype == 'sparcv9' or cputype == 'sparc64': pass else: err = "unknown cpu type: {}".format(cputype)