aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.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/build.py
parent7399be4ab263f7729e0f516aba3bbfea07aa593d (diff)
downloadmeson-eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3.zip
meson-eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3.tar.gz
meson-eb74bb8dbf74ac22a02e369b6622ee0ef8b5d6a3.tar.bz2
Added support for Texas Instruments C6000 compiler.
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 3c9d3a0..2b6ce88 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1976,8 +1976,8 @@ class Executable(BuildTarget):
self.suffix = 'abs'
elif ('c' in self.compilers and self.compilers['c'].get_id().startswith('xc16')):
self.suffix = 'elf'
- elif ('c' in self.compilers and self.compilers['c'].get_id() in {'ti', 'c2000'} or
- 'cpp' in self.compilers and self.compilers['cpp'].get_id() in {'ti', 'c2000'}):
+ elif ('c' in self.compilers and self.compilers['c'].get_id() in {'ti', 'c2000', 'c6000'} or
+ 'cpp' in self.compilers and self.compilers['cpp'].get_id() in {'ti', 'c2000', 'c6000'}):
self.suffix = 'out'
elif ('c' in self.compilers and self.compilers['c'].get_id() in {'mwccarm', 'mwcceppc'} or
'cpp' in self.compilers and self.compilers['cpp'].get_id() in {'mwccarm', 'mwcceppc'}):