mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +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:
parent
0607adde1a
commit
84810a1ba0
1 changed files with 15 additions and 0 deletions
|
@ -112,11 +112,26 @@ rec {
|
||||||
config = "aarch64-none-elf";
|
config = "aarch64-none-elf";
|
||||||
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";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue