diff options
author | Chris Marusich <cmmarusich@gmail.com> | 2021-03-07 15:58:19 -0800 |
---|---|---|
committer | Chris Marusich <cmmarusich@gmail.com> | 2021-03-10 22:59:26 -0800 |
commit | 001fc29b43fd0beb365d536774fae96624309413 (patch) | |
tree | 381dbab15fbcb61906a7ba315d34c6079912211d /gnu/packages | |
parent | 5d2863dfe4613d5091e61800fcd5a48922c8ce4e (diff) | |
download | guix-001fc29b43fd0beb365d536774fae96624309413.tar.gz |
gnu: rust: Make it "supported" on all systems but i686-linux.
* gnu/packages/rust.scm (rust-1.30)[supported-systems]: Instead of hard-coding this to just "x86_64-linux", calculate the supported systems by deleting "i686-linux" from %supported-systems.
Diffstat (limited to 'gnu/packages')
-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 9efe19e1a2..d7bf149d89 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -448,7 +448,9 @@ jemalloc = \"" jemalloc "/lib/libjemalloc_pic.a" "\" (search-path-specification (variable "LIBRARY_PATH") (files '("lib" "lib64"))))) - (supported-systems '("x86_64-linux")) + (supported-systems + (delete "i686-linux" ; fails to build, see bug #35519 + %supported-systems)) (synopsis "Compiler for the Rust progamming language") (description "Rust is a systems programming language that provides memory safety and thread safety guarantees.") |