diff options
author | Manolis Ragkousis <manolis837@gmail.com> | 2014-11-21 23:22:51 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-11-21 23:30:27 +0100 |
commit | a5b60e3c6bfec96092a7854edb0c74fb46eed647 (patch) | |
tree | db6c4c62fe555ed0b6914d023bc2b8859e6cdade /gnu/packages/bootstrap.scm | |
parent | f4391bec000fbc218becda950bb2543c659d95be (diff) | |
download | guix-a5b60e3c6bfec96092a7854edb0c74fb46eed647.tar guix-a5b60e3c6bfec96092a7854edb0c74fb46eed647.tar.gz |
gnu: Add AVR-Libc.
* gnu/packages/avr.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add avr.scm.
* gnu/packages/cross-base.scm (xgcc-avr): New variable.
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add case for
"avr".
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
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 33b61aa0be..854d97bcfb 100644 --- a/gnu/packages/bootstrap.scm +++ b/gnu/packages/bootstrap.scm @@ -162,6 +162,7 @@ check whether everything is alright." ;; XXX: This one is used bare-bones, without a libc, so add a case ;; here just so we can keep going. ((string=? system "xtensa-elf") "no-ld.so") + ((string=? system "avr") "no-ld.so") (else (error "dynamic linker name not known for this system" system)))) |