gnu: bootstrap: Add case for i686-mingw.

* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for i686-mingw.

Signed-off-by: Manolis Ragkousis <manolis837@gmail.com>
This commit is contained in:
Jan Nieuwenhuizen 2016-04-14 07:31:35 +02:00 committed by Manolis Ragkousis
parent 96f2a432bf
commit 3135b95fd8

View file

@ -172,6 +172,7 @@ (define* (glibc-dynamic-linker
;; here just so we can keep going. ;; here just so we can keep going.
((string=? system "xtensa-elf") "no-ld.so") ((string=? system "xtensa-elf") "no-ld.so")
((string=? system "avr") "no-ld.so") ((string=? system "avr") "no-ld.so")
((string=? system "i686-mingw") "no-ld.so")
(else (error "dynamic linker name not known for this system" (else (error "dynamic linker name not known for this system"
system)))) system))))