diff options
author | yvt | 2022-05-23 09:52:36 +0900 |
---|---|---|
committer | GitHub | 2022-05-22 20:52:36 -0400 |
commit | bf139d83eca3ef5442aa875458193d44ddf9dc6c (patch) | |
tree | 8a798cf0dde9a37146c3597fe8ed4706379060ad /lib/systems/examples.nix | |
parent | 66782715d8e56e8ce7ef5bc32799554d668120f6 (diff) |
systems: support cross-compiling for Renesas RX microcontrollers (#173858)
Diffstat (limited to 'lib/systems/examples.nix')
-rw-r--r-- | lib/systems/examples.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix index 997a7a8c273a..170db6fb9fa0 100644 --- a/lib/systems/examples.nix +++ b/lib/systems/examples.nix @@ -145,6 +145,11 @@ rec { libc = "newlib"; }; + rx-embedded = { + config = "rx-none-elf"; + libc = "newlib"; + }; + msp430 = { config = "msp430-elf"; libc = "newlib"; |