aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Alexeyev <akari@taisei-project.org>2019-09-08 02:33:09 +0300
committerNirbheek Chauhan <nirbheek@centricular.com>2019-11-07 17:28:24 +0530
commit7554b41e96bc9857de3b133ed1de1883d986cda9 (patch)
tree6a928084d7b05d5c473e39978efc046815c3eb7e
parentb9aaa1645c73b3ee6378f446ffb94a817ee9d4c0 (diff)
downloadmeson-7554b41e96bc9857de3b133ed1de1883d986cda9.zip
meson-7554b41e96bc9857de3b133ed1de1883d986cda9.tar.gz
meson-7554b41e96bc9857de3b133ed1de1883d986cda9.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 []