summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-14 20:41:33 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-10-29 14:34:09 -0500
commit72e3b2a6629dbe12f184ed0156d9c34af271e158 (patch)
treec5c2b5eb94ed22e8713f26b5a12cd81a0adce2b0 /lib
parentd59a9ac7cf5e17f42aa1d971028f108864f2d252 (diff)
downloadnixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.tar
nixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.tar.gz
nixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.tar.bz2
nixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.tar.lz
nixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.tar.xz
nixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.tar.zst
nixlib-72e3b2a6629dbe12f184ed0156d9c34af271e158.zip
systems: add avrlibc for avr systems
Diffstat (limited to 'lib')
-rw-r--r--lib/systems/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/systems/default.nix b/lib/systems/default.nix
index 8f5ef44ae72f..0b3475fefb9c 100644
--- a/lib/systems/default.nix
+++ b/lib/systems/default.nix
@@ -32,6 +32,7 @@ rec {
         else if final.isUClibc              then "uclibc"
         else if final.isAndroid             then "bionic"
         else if final.isLinux /* default */ then "glibc"
+        else if final.isAvr                 then "avrlibc"
         # TODO(@Ericson2314) think more about other operating systems
         else                                     "native/impure";
       extensions = {