me
/
guix
Archived
1
0
Fork 0

llvm: Add support for the Hurd.

* gnu/packages/llvm.scm (system->llvm-target): Use X86 for i586 (i.e., the
Hurd).
master
Jan Nieuwenhuizen 2020-03-22 19:10:08 +01:00
parent 770ea94c9c
commit 3a1c3642d4
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 2 additions and 1 deletions

View File

@ -75,7 +75,8 @@ as \"x86_64-linux\"."
("powerpc" => "PowerPC") ("powerpc" => "PowerPC")
("riscv" => "RISCV") ("riscv" => "RISCV")
("x86_64" => "X86") ("x86_64" => "X86")
("i686" => "X86")))) ("i686" => "X86")
("i586" => "X86"))))
(define (llvm-download-uri component version) (define (llvm-download-uri component version)
(if (version>=? version "9.0.1") (if (version>=? version "9.0.1")