aboutsummaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authoralanNz <alangrimmer@gmail.com>2020-01-30 10:34:19 +1300
committerJussi Pakkanen <jpakkane@gmail.com>2020-01-30 22:11:26 +0200
commit1682058decb5f16ce1b78121ee587c024e9cfa17 (patch)
treebc4039a5aba5c0ee19ae85805f0dfe8eeedf85bb /cross
parent7a51f8bd11de8f3a54e32be475fb44136d25ecdb (diff)
downloadmeson-1682058decb5f16ce1b78121ee587c024e9cfa17.zip
meson-1682058decb5f16ce1b78121ee587c024e9cfa17.tar.gz
meson-1682058decb5f16ce1b78121ee587c024e9cfa17.tar.bz2
-Fixed Renesas RX Family compiler to work with latest meson, updated cross-file, fixed assembly file use
Diffstat (limited to 'cross')
-rw-r--r--cross/ccrx.txt8
1 files changed, 5 insertions, 3 deletions
diff --git a/cross/ccrx.txt b/cross/ccrx.txt
index 5474bb0..097ec06 100644
--- a/cross/ccrx.txt
+++ b/cross/ccrx.txt
@@ -10,11 +10,13 @@ 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']
+c_args = ['-cpu=rx600']
+cpp_args = ['-cpu=rx600']
+c_link_args = []
+cpp_link_args = []
[host_machine]
-system = 'bare metal' # Update with your system name - bare metal/OS.
+system = 'bare metal'
cpu_family = 'rx'
cpu = 'rx600'
endian = 'little'