mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 06:46:50 +01:00
gnu: glibc-dynamic-linker: Match all mingw systems.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Match any system which ends in '-mingw'. Change-Id: I057e3d0abfc37f4b2b8784f444bbaf865c67ce3e
This commit is contained in:
parent
006679d1e6
commit
76bc375080
1 changed files with 1 additions and 2 deletions
|
@ -340,10 +340,9 @@ (define* (glibc-dynamic-linker
|
|||
;; here just so we can keep going.
|
||||
((string=? system "arm-eabi") "no-ld.so")
|
||||
((string=? system "avr") "no-ld.so")
|
||||
((string=? system "i686-mingw") "no-ld.so")
|
||||
((string=? system "or1k-elf") "no-ld.so")
|
||||
((string=? system "x86_64-mingw") "no-ld.so")
|
||||
((string-suffix? "-elf" system) "no-ld.so")
|
||||
((string-suffix? "-mingw" system) "no-ld.so")
|
||||
|
||||
(else (error "dynamic linker name not known for this system"
|
||||
system)))))
|
||||
|
|
Loading…
Reference in a new issue