gnu: rust-bootstrap: Remove aarch64 as a supported architecture.

This is so that we can merge the branch, building rust for aarch64-linux
on CI is very time intensive.

* gnu/packages/rust.scm (rust-bootstrap)[supported-systems]: Remove
aarch64-linux.
This commit is contained in:
Efraim Flashner 2023-05-09 09:54:37 +03:00
parent de490476ca
commit c56d57110d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -360,9 +360,9 @@ (define rust-bootstrap
;; therefore the build process needs 8GB of RAM while building.
;; It may support i686 soon:
;; <https://github.com/thepowersgang/mrustc/issues/78>.
;; XXX: The rust bootstrap is currently broken on riscv64,
;; remove it until this is fixed.
(supported-systems '("x86_64-linux" "aarch64-linux"))
;; XXX: The rust bootstrap is currently broken on riscv64 and fails to
;; build on CI for aarch64, remove them until this is fixed.
(supported-systems '("x86_64-linux"))
;; Dual licensed.
(license (list license:asl2.0 license:expat))))