aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/mixins/ccrx.py
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 /mesonbuild/compilers/mixins/ccrx.py
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 'mesonbuild/compilers/mixins/ccrx.py')
-rw-r--r--mesonbuild/compilers/mixins/ccrx.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/mesonbuild/compilers/mixins/ccrx.py b/mesonbuild/compilers/mixins/ccrx.py
index 5e61805..b859215 100644
--- a/mesonbuild/compilers/mixins/ccrx.py
+++ b/mesonbuild/compilers/mixins/ccrx.py
@@ -52,7 +52,7 @@ class CcrxCompiler:
raise EnvironmentException('ccrx supports only cross-compilation.')
self.id = 'ccrx'
# Assembly
- self.can_compile_suffixes.update('s')
+ self.can_compile_suffixes.add('src')
default_warn_args = [] # type: T.List[str]
self.warn_args = {'0': [],
'1': default_warn_args,
@@ -83,6 +83,12 @@ class CcrxCompiler:
def get_coverage_args(self) -> T.List[str]:
return []
+ def get_no_stdinc_args(self) -> T.List[str]:
+ return []
+
+ def get_no_stdlib_link_args(self) -> T.List[str]:
+ return []
+
def get_optimization_args(self, optimization_level: str) -> T.List[str]:
return ccrx_optimization_args[optimization_level]