me
/
guix
Archived
1
0
Fork 0

gnu: Use dummy linker for '*-elf' systems.

* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Return "no-ld.so" for
systems with a "-elf" suffix.
master
宋文武 2023-05-15 18:16:00 +08:00
parent 4975a517c8
commit bcda49b656
No known key found for this signature in database
GPG Key ID: D415BF253B515976
1 changed files with 1 additions and 4 deletions

View File

@ -325,14 +325,11 @@ or false to signal an error."
;; XXX: This one is used bare-bones, without a libc, so add a case
;; here just so we can keep going.
((string=? system "arm-elf") "no-ld.so")
((string=? system "arm-eabi") "no-ld.so")
((string=? system "xtensa-elf") "no-ld.so")
((string=? system "avr") "no-ld.so")
((string=? system "propeller-elf") "no-ld.so")
((string=? system "i686-mingw") "no-ld.so")
((string=? system "x86_64-mingw") "no-ld.so")
((string=? system "vc4-elf") "no-ld.so")
((string-suffix? "-elf" system) "no-ld.so")
(else (error "dynamic linker name not known for this system"
system)))))