summaryrefslogtreecommitdiff
path: root/mesonbuild/linkers/linkers.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2024-10-30 12:05:41 +0200
committerGitHub <noreply@github.com>2024-10-30 12:05:41 +0200
commit1feb771f06ade5d0c721022c11fa76f5a7dd8fcb (patch)
treee7014b4ca914c15a06275f55c2ca2c43a985a050 /mesonbuild/linkers/linkers.py
parent1840bb02ba741fb62a8d613a71431a8d7fa86a00 (diff)
parent02960bc4493238886fbe0b3d09a2ba405d791246 (diff)
downloadmeson-1feb771f06ade5d0c721022c11fa76f5a7dd8fcb.tar.gz
Merge pull request #13681 from EngJay/13678-fix-ti-cgt-support
Fix TI C2000 support
Diffstat (limited to 'mesonbuild/linkers/linkers.py')
-rw-r--r--mesonbuild/linkers/linkers.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/linkers/linkers.py b/mesonbuild/linkers/linkers.py
index c4df0fa1d..d0ffc5618 100644
--- a/mesonbuild/linkers/linkers.py
+++ b/mesonbuild/linkers/linkers.py
@@ -26,6 +26,9 @@ class StaticLinker:
def __init__(self, exelist: T.List[str]):
self.exelist = exelist
+ def get_id(self) -> str:
+ return self.id
+
def compiler_args(self, args: T.Optional[T.Iterable[str]] = None) -> CompilerArgs:
return CompilerArgs(self, args)