diff options
| author | Jean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr> | 2017-02-03 08:56:46 +0100 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr> | 2017-02-03 09:11:33 +0100 |
| commit | f6c6b31d26b5b08fbd1df907e37c5c02c7d71f90 (patch) | |
| tree | a319ebe67962e383c089591b9c1e8381612f9f8b /src/bootstrap/bootstrap.py | |
| parent | 458167e3a066ae7a032dbd457d003c9266d6b080 (diff) | |
| download | rust-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.py | 2 |
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' |
