diff options
| author | Phillip Cao <ftechz@gmail.com> | 2018-10-25 15:24:05 +1300 |
|---|---|---|
| committer | Phillip Cao <ftechz@gmail.com> | 2018-11-08 00:02:22 +1300 |
| commit | 68c83cb213ab3f17593699020313535d5de1e92f (patch) | |
| tree | a7d1e78ca6d0f8fe1b1ad0e19bbac5e1d10039ec /mesonbuild/compilers/__init__.py | |
| parent | 996f07c546d6e82b0648a1d9f81d7474b1bec76e (diff) | |
| download | meson-68c83cb213ab3f17593699020313535d5de1e92f.tar.gz | |
Add support for Renesas CC-RX toolchain
Diffstat (limited to 'mesonbuild/compilers/__init__.py')
| -rw-r--r-- | mesonbuild/compilers/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py index 7050b0c3d..31b7b897b 100644 --- a/mesonbuild/compilers/__init__.py +++ b/mesonbuild/compilers/__init__.py @@ -78,6 +78,9 @@ __all__ = [ 'PathScaleFortranCompiler', 'PGIFortranCompiler', 'RustCompiler', + 'CcrxCCompiler', + 'CcrxCompiler', + 'CcrxCPPCompiler', 'SunFortranCompiler', 'SwiftCompiler', 'ValaCompiler', @@ -110,6 +113,7 @@ from .compilers import ( CompilerArgs, GnuCompiler, IntelCompiler, + CcrxCompiler, ) from .c import ( CCompiler, @@ -120,6 +124,7 @@ from .c import ( GnuCCompiler, ElbrusCCompiler, IntelCCompiler, + CcrxCCompiler, VisualStudioCCompiler, ) from .cpp import ( @@ -131,6 +136,7 @@ from .cpp import ( GnuCPPCompiler, ElbrusCPPCompiler, IntelCPPCompiler, + CcrxCPPCompiler, VisualStudioCPPCompiler, ) from .cs import MonoCompiler, VisualStudioCsCompiler |
