From 68c83cb213ab3f17593699020313535d5de1e92f Mon Sep 17 00:00:00 2001 From: Phillip Cao Date: Thu, 25 Oct 2018 15:24:05 +1300 Subject: Add support for Renesas CC-RX toolchain --- cross/ccrx.txt | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 cross/ccrx.txt (limited to 'cross') diff --git a/cross/ccrx.txt b/cross/ccrx.txt new file mode 100644 index 000000000..5474bb0ae --- /dev/null +++ b/cross/ccrx.txt @@ -0,0 +1,20 @@ +# This file assumes that path to the Renesas CC-RX toolchain is added +# to the environment(PATH) variable, so that Meson can find +# ccrx and rlink while building. +[binaries] +c = 'ccrx' +cpp = 'ccrx' +ar = 'rlink' +strip = 'rlink' + +[properties] +# The '--cpu' option with the appropriate target type should be mentioned +# to cross compile c/c++ code with ccrx,. +c_args = ['--cpu=rx600'] +cpp_args = ['--cpu=rx600'] + +[host_machine] +system = 'bare metal' # Update with your system name - bare metal/OS. +cpu_family = 'rx' +cpu = 'rx600' +endian = 'little' -- cgit v1.2.3