From 1715109cd1a5a933fd2b10b57380c518df5a6303 Mon Sep 17 00:00:00 2001 From: Rust Maintainers Date: Mon, 6 Nov 2017 09:03:32 +0000 Subject: [PATCH] u-sparc64-detection-2 commit d7dec7c8d71b30fea6e4c5aca40adce1724ba87d Author: John Paul Adrian Glaubitz Date: Sun Oct 29 23:51:14 2017 +0100 bootstrap: Add missing cputype matching for sparc64 Gbp-Pq: Name u-sparc64-detection-2.patch --- 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 9369a55ccb..8837f13d48 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -654,7 +654,7 @@ class RustBuild(object): 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) -- 2.30.2