[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: rust: Make it "supported" on all systems but i686-linux.
From: |
guix-commits |
Subject: |
02/02: gnu: rust: Make it "supported" on all systems but i686-linux. |
Date: |
Thu, 11 Mar 2021 02:01:21 -0500 (EST) |
marusich pushed a commit to branch core-updates
in repository guix.
commit 001fc29b43fd0beb365d536774fae96624309413
Author: Chris Marusich <cmmarusich@gmail.com>
AuthorDate: Sun Mar 7 15:58:19 2021 -0800
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.
---
gnu/packages/rust.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index 9efe19e..d7bf149 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.")