about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>2017-10-29 23:51:14 +0100
committerJohn Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>2017-10-31 19:26:41 +0100
commitd7dec7c8d71b30fea6e4c5aca40adce1724ba87d (patch)
treecb47e2ef3c06bbf9ee3842c7eb2e758b142af08b
parent8b22e70b2de5152db3b0c53cfa16eb96b0b9e40e (diff)
downloadrust-d7dec7c8d71b30fea6e4c5aca40adce1724ba87d.tar.gz
rust-d7dec7c8d71b30fea6e4c5aca40adce1724ba87d.zip
bootstrap: Add missing cputype matching for sparc64
-rw-r--r--src/bootstrap/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
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)