summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorPetr Machacek <machacek@2n.com>2023-09-12 09:11:50 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2024-03-12 20:38:30 +0200
commiteb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3 (patch)
treea4569279dd3dc926bb8fff9b9d095c1fe9223a1b /mesonbuild/compilers/cpp.py
parent7399be4ab263f7729e0f516aba3bbfea07aa593d (diff)
downloadmeson-eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3.tar.gz
Added support for Texas Instruments C6000 compiler.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py3
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'