aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Alexeyev <akari@taisei-project.org>2019-09-08 02:33:09 +0300
committerDylan Baker <dylan@pnwbakers.com>2019-10-14 13:04:34 -0700
commit0845b7dd3de34b96a603c7b6b6e473e8449135db (patch)
treef790f129ec875cc4bf31906d65998ec6bc2a439a
parent9488e4acfe28dcb0f1fd830d40cf2635ae140b37 (diff)
downloadmeson-0845b7dd3de34b96a603c7b6b6e473e8449135db.zip
meson-0845b7dd3de34b96a603c7b6b6e473e8449135db.tar.gz
meson-0845b7dd3de34b96a603c7b6b6e473e8449135db.tar.bz2
Implement get_linker_debug_crt_args in BasicLinkerIsCompilerMixin
-rw-r--r--mesonbuild/compilers/mixins/islinker.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/mixins/islinker.py b/mesonbuild/compilers/mixins/islinker.py
index 835d299..d84fff5 100644
--- a/mesonbuild/compilers/mixins/islinker.py
+++ b/mesonbuild/compilers/mixins/islinker.py
@@ -121,3 +121,6 @@ class BasicLinkerIsCompilerMixin:
rpath_paths: str, build_rpath: str,
install_rpath: str) -> typing.List[str]:
return []
+
+ def get_linker_debug_crt_args(self) -> typing.List[str]:
+ return []