diff options
| author | 宋文武 <iyzsong@member.fsf.org> | 2023-05-15 18:16:00 +0800 |
|---|---|---|
| committer | 宋文武 <iyzsong@member.fsf.org> | 2023-05-15 21:31:51 +0800 |
| commit | bcda49b656f5320ff3646decdb241e228c8636fd (patch) | |
| tree | 80604b589e63bf55f475925c2c17e97f585318e8 /gnu/packages/bootstrap.scm | |
| parent | 4975a517c8dcfb4a74d171569264b200434f648f (diff) | |
gnu: Use dummy linker for '*-elf' systems.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Return "no-ld.so" for
systems with a "-elf" suffix.
Diffstat (limited to 'gnu/packages/bootstrap.scm')
| -rw-r--r-- | gnu/packages/bootstrap.scm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 9a46f97c813..5f6a3acc83f 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm | |||
| @@ -325,14 +325,11 @@ or false to signal an error." | |||
| 325 | 325 | ||
| 326 | ;; XXX: This one is used bare-bones, without a libc, so add a case | 326 | ;; XXX: This one is used bare-bones, without a libc, so add a case |
| 327 | ;; here just so we can keep going. | 327 | ;; here just so we can keep going. |
| 328 | ((string=? system "arm-elf") "no-ld.so") | ||
| 329 | ((string=? system "arm-eabi") "no-ld.so") | 328 | ((string=? system "arm-eabi") "no-ld.so") |
| 330 | ((string=? system "xtensa-elf") "no-ld.so") | ||
| 331 | ((string=? system "avr") "no-ld.so") | 329 | ((string=? system "avr") "no-ld.so") |
| 332 | ((string=? system "propeller-elf") "no-ld.so") | ||
| 333 | ((string=? system "i686-mingw") "no-ld.so") | 330 | ((string=? system "i686-mingw") "no-ld.so") |
| 334 | ((string=? system "x86_64-mingw") "no-ld.so") | 331 | ((string=? system "x86_64-mingw") "no-ld.so") |
| 335 | ((string=? system "vc4-elf") "no-ld.so") | 332 | ((string-suffix? "-elf" system) "no-ld.so") |
| 336 | 333 | ||
| 337 | (else (error "dynamic linker name not known for this system" | 334 | (else (error "dynamic linker name not known for this system" |
| 338 | system))))) | 335 | system))))) |
