me
/
guix
Archived
1
0
Fork 0

gnu: rust: Update supported-systems.

* gnu/packages/rust.scm (rust-1.55)[supported-systems]: Explicitly list
systems where the final rust compiler builds successfully.

Change-Id: Icb89dd4eec1404a9d8db54029e69dae02a66f19e
master
Efraim Flashner 2024-01-25 08:28:31 +02:00
parent a65361cff1
commit d31b86a698
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 2 additions and 1 deletions

View File

@ -541,7 +541,8 @@ ar = \"" binutils "/bin/ar" "\"
;; rustc invokes gcc, so we need to set its search paths accordingly.
(native-search-paths
%gcc-search-paths)
(supported-systems (delete "i586-gnu" %supported-systems))
;; Limit this to systems where the final rust compiler builds successfully.
(supported-systems '("x86_64-linux" "aarch64-linux" "riscv64-linux"))
(synopsis "Compiler for the Rust programming language")
(description "Rust is a systems programming language that provides memory
safety and thread safety guarantees.")