summary refs log tree commit diff
path: root/lib/systems/parse.nix
diff options
context:
space:
mode:
authoryvt <i@yvt.jp>2022-05-23 09:52:36 +0900
committerGitHub <noreply@github.com>2022-05-22 20:52:36 -0400
commitbf139d83eca3ef5442aa875458193d44ddf9dc6c (patch)
tree8a798cf0dde9a37146c3597fe8ed4706379060ad /lib/systems/parse.nix
parent66782715d8e56e8ce7ef5bc32799554d668120f6 (diff)
downloadnixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.gz
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.bz2
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.lz
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.xz
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.tar.zst
nixpkgs-bf139d83eca3ef5442aa875458193d44ddf9dc6c.zip
systems: support cross-compiling for Renesas RX microcontrollers (#173858)
Diffstat (limited to 'lib/systems/parse.nix')
-rw-r--r--lib/systems/parse.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix
index 3ceddbb599b..bf436ec8db5 100644
--- a/lib/systems/parse.nix
+++ b/lib/systems/parse.nix
@@ -116,6 +116,7 @@ rec {
 
     alpha    = { bits = 64; significantByte = littleEndian; family = "alpha"; };
 
+    rx       = { bits = 32; significantByte = littleEndian; family = "rx"; };
     msp430   = { bits = 16; significantByte = littleEndian; family = "msp430"; };
     avr      = { bits = 8; family = "avr"; };