summary refs log tree commit diff
path: root/lib/systems/examples.nix
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-10-30 13:46:01 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-10-30 13:46:01 -0500
commit2634d376175d300c1c2572defe8c6d348ad61e20 (patch)
tree7c7798c6e97f390e38ea75ba9f6a2dc88391491d /lib/systems/examples.nix
parent7a03d2d65f5fcb06ef693a442b806a34ab0803c7 (diff)
downloadnixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.tar
nixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.tar.gz
nixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.tar.bz2
nixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.tar.lz
nixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.tar.xz
nixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.tar.zst
nixpkgs-2634d376175d300c1c2572defe8c6d348ad61e20.zip
systems/examples: add i686 & x86-64 embedded
Fixes #28160
Diffstat (limited to 'lib/systems/examples.nix')
-rw-r--r--lib/systems/examples.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix
index 2bfa9700ccd..a40c3892424 100644
--- a/lib/systems/examples.nix
+++ b/lib/systems/examples.nix
@@ -118,6 +118,16 @@ rec {
     libc = "newlib";
   };
 
+  i686-embedded = {
+    config = "i686-elf";
+    libc = "newlib";
+  };
+
+  x86_64-embedded = {
+    config = "x86_64-elf";
+    libc = "newlib";
+  };
+
   #
   # Darwin
   #