diff options
| author | Corey Farwell <coreyf@rwell.org> | 2017-02-05 12:45:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-02-05 12:45:06 -0500 |
| commit | b3518aff902c72152c04c321c95292f0a491cde5 (patch) | |
| tree | c05d969a6408a5a18a093c2508c5886312ad5b2b /src/bootstrap/bootstrap.py | |
| parent | d021a3fd6938b9c149ee4ade0ecbfaa1d3b9f36b (diff) | |
| parent | f6c6b31d26b5b08fbd1df907e37c5c02c7d71f90 (diff) | |
| download | rust-b3518aff902c72152c04c321c95292f0a491cde5.tar.gz rust-b3518aff902c72152c04c321c95292f0a491cde5.zip | |
Rollup merge of #39491 - dumbbell:support-aarch64-unknown-freebsd, r=alexcrichton
Support aarch64-unknown-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 bc834110242..27255b69100 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' |
