0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-12 13:18:57 +03:00

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.
This commit is contained in:
Vincent Weisner 2018-11-09 09:06:31 -05:00 committed by GitHub
parent 0607adde1a
commit 84810a1ba0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,11 +113,26 @@ rec {
libc = "newlib"; libc = "newlib";
}; };
aarch64be-embedded = {
config = "aarch64_be-none-elf";
libc = "newlib";
}
ppc-embedded = { ppc-embedded = {
config = "powerpc-none-eabi"; config = "powerpc-none-eabi";
libc = "newlib"; libc = "newlib";
}; };
ppcle-embedded = {
config = "powerpcle-none-eabi";
libc = "newlib";
};
alpha-embedded = {
config = "alpha-elf";
libc = "newlib";
}
i686-embedded = { i686-embedded = {
config = "i686-elf"; config = "i686-elf";
libc = "newlib"; libc = "newlib";