diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2018-12-28 14:36:37 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-01-07 16:39:35 +0100 |
commit | 7f2d67c826cf5c0653aea2637462b0964e2e1984 (patch) | |
tree | 81d5506af7af2b4b082616bbd3372d773b3b4418 /gnu/packages/bootstrap.scm | |
parent | 2a2760a08f6a9c45d94f72dff7f97bf2c23a886a (diff) | |
download | guix-7f2d67c826cf5c0653aea2637462b0964e2e1984.tar guix-7f2d67c826cf5c0653aea2637462b0964e2e1984.tar.gz |
gnu: Add dummy linker for arm-elf.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for arm-elf.
Diffstat (limited to 'gnu/packages/bootstrap.scm')
-rw-r--r-- | gnu/packages/bootstrap.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm index 936d6c1a2a..a3ecbeb076 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -180,6 +180,7 @@ return value is ignored." ;; 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") |