diff options
| author | Petr Machacek <machacek@2n.com> | 2023-09-12 09:11:50 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-03-12 20:38:30 +0200 |
| commit | eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3 (patch) | |
| tree | a4569279dd3dc926bb8fff9b9d095c1fe9223a1b /mesonbuild/compilers/cpp.py | |
| parent | 7399be4ab263f7729e0f516aba3bbfea07aa593d (diff) | |
| download | meson-eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3.tar.gz | |
Added support for Texas Instruments C6000 compiler.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
| -rw-r--r-- | mesonbuild/compilers/cpp.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 0ff89a3ea..c5c2735ad 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -960,6 +960,9 @@ class C2000CPPCompiler(TICPPCompiler): # Required for backwards compat with projects created before ti-cgt support existed id = 'c2000' +class C6000CPPCompiler(TICPPCompiler): + id = 'c6000' + class MetrowerksCPPCompilerARM(MetrowerksCompiler, CPPCompiler): id = 'mwccarm' |
