diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-04-29 23:20:23 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-04-29 23:22:30 +0300 |
commit | 8fe5ed47cbbb6ae6ed00afa8d8b4f04e216d5adc (patch) | |
tree | b835e1de06ccac7e979129a5352e852226f1754e /gnu/packages/rust.scm | |
parent | 8b660997223310e2e62addb00a407613d2adbf65 (diff) | |
download | guix-8fe5ed47cbbb6ae6ed00afa8d8b4f04e216d5adc.tar.gz |
gnu: rust: Disable support for aarch64-linux, riscv64-linux.
Support is currently broken and blocks too many other packages. * gnu/packages/gnome.scm (librsvg-for-system): Only use librsvg on x86_64-linux. * gnu/packages/rust.scm (rust-bootstrap)[supported-systems]: Remove aarch64-linux, riscv64-linux.
Diffstat (limited to 'gnu/packages/rust.scm')
-rw-r--r-- | gnu/packages/rust.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index d07f4ef10c..9af4ae2703 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -346,7 +346,9 @@ safety and thread safety guarantees.") ;; therefore the build process needs 8GB of RAM while building. ;; It may support i686 soon: ;; <https://github.com/thepowersgang/mrustc/issues/78>. - (supported-systems '("x86_64-linux" "aarch64-linux" "riscv64-linux")) + ;; XXX: The rust bootstrap is currently broken on aarch64 and riscv64, + ;; remove them until this is fixed. + (supported-systems '("x86_64-linux")) ;; Dual licensed. (license (list license:asl2.0 license:expat)))) |