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:
Efraim Flashner 2024-12-05 13:01:18 +02:00
parent 006679d1e6
commit 76bc375080
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -340,10 +340,9 @@ (define* (glibc-dynamic-linker
;; here just so we can keep going. ;; here just so we can keep going.
((string=? system "arm-eabi") "no-ld.so") ((string=? system "arm-eabi") "no-ld.so")
((string=? system "avr") "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 "or1k-elf") "no-ld.so")
((string=? system "x86_64-mingw") "no-ld.so")
((string-suffix? "-elf" system) "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" (else (error "dynamic linker name not known for this system"
system))))) system)))))