aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers/linkers.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/linkers/linkers.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/linkers/linkers.py')
-rw-r--r--mesonbuild/linkers/linkers.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/mesonbuild/linkers/linkers.py b/mesonbuild/linkers/linkers.py
index 2048268..657e361 100644
--- a/mesonbuild/linkers/linkers.py
+++ b/mesonbuild/linkers/linkers.py
@@ -492,6 +492,9 @@ class C2000Linker(TILinker):
# Required for backwards compat with projects created before ti-cgt support existed
id = 'ar2000'
+class C6000Linker(TILinker):
+ id = 'ar6000'
+
class AIXArLinker(ArLikeLinker, StaticLinker):
id = 'aixar'
@@ -1094,6 +1097,9 @@ class C2000DynamicLinker(TIDynamicLinker):
# Required for backwards compat with projects created before ti-cgt support existed
id = 'cl2000'
+class C6000DynamicLinker(TIDynamicLinker):
+ id = 'cl6000'
+
class ArmDynamicLinker(PosixDynamicLinkerMixin, DynamicLinker):