lib.systems: Add arm-embedded-nano

Newlib-nano variant of the arm-embedded stdenv.
This commit is contained in:
Ross Smyth
2025-03-20 16:15:09 -04:00
parent 14f4134db9
commit 57ec4f3128
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -193,6 +193,10 @@ rec {
config = "arm-none-eabi";
libc = "newlib";
};
arm-embedded-nano = {
config = "arm-none-eabi";
libc = "newlib-nano";
};
armhf-embedded = {
config = "arm-none-eabihf";
libc = "newlib";
+1
View File
@@ -248,6 +248,7 @@ in
or1k = mapTestOnCross systems.examples.or1k embedded;
avr = mapTestOnCross systems.examples.avr embedded;
arm-embedded = mapTestOnCross systems.examples.arm-embedded embedded;
arm-embedded-nano = mapTestOnCross systems.examples.arm-embedded-nano embedded;
armhf-embedded = mapTestOnCross systems.examples.armhf-embedded embedded;
aarch64-embedded = mapTestOnCross systems.examples.aarch64-embedded embedded;
aarch64be-embedded = mapTestOnCross systems.examples.aarch64be-embedded embedded;