mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 19:11:43 -05:00
gnu: rust-1.19: Don't include i686-linux in supported-systems.
Currently rust fails to build for i686-linux, so this will avoid computing lots of derivations that depend on rust, but won't be possible to build. * gnu/packages/rust.scm (rust-1.19)[supported-systems]: Switch hardcoding only supporting x86_64-linux for supporting all supported systems, other than i686-linux.
This commit is contained in:
parent
a0b24d5f8c
commit
f5c6e6966c
1 changed files with 3 additions and 1 deletions
|
@ -453,7 +453,9 @@ (define rust-1.19
|
||||||
(variable "LIBRARY_PATH")
|
(variable "LIBRARY_PATH")
|
||||||
(files '("lib" "lib64")))))
|
(files '("lib" "lib64")))))
|
||||||
|
|
||||||
(supported-systems '("x86_64-linux"))
|
(supported-systems
|
||||||
|
(delete "i686-linux" ; fails to build, see #35519
|
||||||
|
%supported-systems))
|
||||||
(synopsis "Compiler for the Rust programming language")
|
(synopsis "Compiler for the Rust programming language")
|
||||||
(description "Rust is a systems programming language that provides memory
|
(description "Rust is a systems programming language that provides memory
|
||||||
safety and thread safety guarantees.")
|
safety and thread safety guarantees.")
|
||||||
|
|
Loading…
Reference in a new issue