Skip to content

Commit 2d29070

Browse files
duynguyenxakeith-packard
authored andcommitted
arch: Add support for RX GCC build
This commit only add minimal require part to enable Renesas RX architecture gcc toolchain build on Zephyr SDK Signed-off-by: Duy Nguyen <[email protected]>
1 parent e3ff5a1 commit 2d29070

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

cmake/zephyr/target.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ set(CROSS_COMPILE_TARGET_arm64 aarch64-zephyr-elf)
1010
set(CROSS_COMPILE_TARGET_nios2 nios2-zephyr-elf)
1111
set(CROSS_COMPILE_TARGET_riscv riscv64-zephyr-elf)
1212
set(CROSS_COMPILE_TARGET_mips mips-zephyr-elf)
13+
set(CROSS_COMPILE_TARGET_rx rx-zephyr-elf)
1314
set(CROSS_COMPILE_TARGET_microblaze microblazeel-zephyr-elf)
1415
set(CROSS_COMPILE_TARGET_xtensa xtensa-${SOC_TOOLCHAIN_NAME}_zephyr-elf)
1516

configs/rx-zephyr-elf.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
CT_CONFIG_VERSION="3"
2+
CT_EXPERIMENTAL=y
3+
CT_ARCH_RX=y
4+
CT_TARGET_CFLAGS="-ftls-model=local-exec"
5+
CT_TARGET_VENDOR="zephyr"
6+
CT_MULTILIB=y

0 commit comments

Comments
 (0)