summary refs log tree commit diff
path: root/lib/systems/examples.nix
diff options
context:
space:
mode:
authorVincent Weisner <vincentweisner@icloud.com>2018-11-09 09:06:31 -0500
committerGitHub <noreply@github.com>2018-11-09 09:06:31 -0500
commit84810a1ba0c695cc42f2392e4537b3c9582b3430 (patch)
treea81407ca77e14b80697b295cc596f3556bfab5bd /lib/systems/examples.nix
parent0607adde1a5d4c933986c6a7a169c44ee9ef3469 (diff)
downloadnixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.tar
nixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.tar.gz
nixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.tar.bz2
nixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.tar.lz
nixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.tar.xz
nixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.tar.zst
nixpkgs-84810a1ba0c695cc42f2392e4537b3c9582b3430.zip
lib/system: Added Embedded Platforms for the CPUs
I added some embedded platforms for the CPUs I added to the parse.nix file.
These could be used as new platforms for the added CPUs.
Diffstat (limited to 'lib/systems/examples.nix')
-rw-r--r--lib/systems/examples.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix
index a40c3892424..c9c6c503904 100644
--- a/lib/systems/examples.nix
+++ b/lib/systems/examples.nix
@@ -112,11 +112,26 @@ rec {
     config = "aarch64-none-elf";
     libc = "newlib";
   };
+  
+  aarch64be-embedded = {
+    config = "aarch64_be-none-elf";
+    libc = "newlib";
+  }
 
   ppc-embedded = {
     config = "powerpc-none-eabi";
     libc = "newlib";
   };
+  
+  ppcle-embedded = {
+    config = "powerpcle-none-eabi";
+    libc = "newlib";
+  };
+  
+  alpha-embedded = {
+    config = "alpha-elf";
+    libc = "newlib";
+  }
 
   i686-embedded = {
     config = "i686-elf";