From 76bc375080486254456cec6d4b4baab01aa67ca1 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Thu, 5 Dec 2024 13:01:18 +0200 Subject: 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 --- gnu/packages/bootstrap.scm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gnu/packages/bootstrap.scm') diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index f2620f844c..db20e71fe0 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -340,10 +340,9 @@ or false to signal an error." ;; 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))))) -- cgit v1.2.3