From: Rust Maintainers Date: Sun, 12 Mar 2017 03:15:33 +0000 (+0000) Subject: u-arm-on-64bit-kernel X-Git-Tag: archive/raspbian/1.17.0+dfsg2-8+rpi1~2^2^2~10 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=784e8e31565675b4df92d34b19181d9b771665f8;p=rustc.git u-arm-on-64bit-kernel Gbp-Pq: Name u-arm-on-64bit-kernel.diff --- diff --git a/configure b/configure index 8d8ba58426..d90f050631 100755 --- a/configure +++ b/configure @@ -513,7 +513,7 @@ case $CFG_CPUTYPE in CFG_OSTYPE="${CFG_OSTYPE}eabihf" ;; - armv7l) + armv7l | armv8l) CFG_CPUTYPE=armv7 CFG_OSTYPE="${CFG_OSTYPE}eabihf" ;; diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index c946fdf3a7..69f2355a36 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -372,7 +372,7 @@ class RustBuild(object): cputype = 'i686' elif cputype in {'xscale', 'arm'}: cputype = 'arm' - elif cputype == 'armv7l': + elif cputype in {'armv7l', 'armv8l'}: cputype = 'arm' ostype += 'eabihf' elif cputype == 'aarch64':