llvm: Add support for the Hurd.

* gnu/packages/llvm.scm (system->llvm-target): Use X86 for i586 (i.e., the
Hurd).
This commit is contained in:
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

View file

@ -75,7 +75,8 @@ (define* (system->llvm-target #:optional
("powerpc" => "PowerPC")
("riscv" => "RISCV")
("x86_64" => "X86")
("i686" => "X86"))))
("i686" => "X86")
("i586" => "X86"))))
(define (llvm-download-uri component version)
(if (version>=? version "9.0.1")