about summary refs log tree commit diff
path: root/src/bootstrap/bootstrap.py
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr>2017-02-03 08:56:46 +0100
committerJean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr>2017-02-03 09:11:33 +0100
commitf6c6b31d26b5b08fbd1df907e37c5c02c7d71f90 (patch)
treea319ebe67962e383c089591b9c1e8381612f9f8b /src/bootstrap/bootstrap.py
parent458167e3a066ae7a032dbd457d003c9266d6b080 (diff)
downloadrust-f6c6b31d26b5b08fbd1df907e37c5c02c7d71f90.tar.gz
rust-f6c6b31d26b5b08fbd1df907e37c5c02c7d71f90.zip
`aarch64` CPU type is called `arm64` on FreeBSD
Diffstat (limited to 'src/bootstrap/bootstrap.py')
-rw-r--r--src/bootstrap/bootstrap.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py
index 85e8dbce1a9..7265d183000 100644
--- a/src/bootstrap/bootstrap.py
+++ b/src/bootstrap/bootstrap.py
@@ -379,6 +379,8 @@ class RustBuild(object):
             ostype += 'eabihf'
         elif cputype == 'aarch64':
             cputype = 'aarch64'
+        elif cputype == 'arm64':
+            cputype = 'aarch64'
         elif cputype == 'mips':
             if sys.byteorder == 'big':
                 cputype = 'mips'