From: Rust Maintainers Date: Wed, 19 Apr 2017 20:47:18 +0000 (+0100) Subject: u-arm-on-64bit-kernel X-Git-Tag: archive/raspbian/1.17.0+dfsg2-8+rpi1~2^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=deb8eb7b7f3a7c0c866580c10306fd75aef5b1e8;p=rustc.git u-arm-on-64bit-kernel Gbp-Pq: Name u-arm-on-64bit-kernel.diff --- diff --git a/configure b/configure index 3d0f0e2ec5..79f1d6f149 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 442973e466..04cc6efc98 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -374,7 +374,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':