diff options
author | Andrei Alexeyev <akari@taisei-project.org> | 2019-10-14 18:19:44 +0300 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-10-14 13:04:34 -0700 |
commit | 5dfd054c3204ec56aa3e10a632e8475a66a4bb30 (patch) | |
tree | abffe6b2a69cd360ef8b9ea4be494af374277150 /mesonbuild/compilers/d.py | |
parent | af2c1e4eb79d9005df344826a2b789e9b3ac3000 (diff) | |
download | meson-5dfd054c3204ec56aa3e10a632e8475a66a4bb30.zip meson-5dfd054c3204ec56aa3e10a632e8475a66a4bb30.tar.gz meson-5dfd054c3204ec56aa3e10a632e8475a66a4bb30.tar.bz2 |
Workaround broken get_allow_undefined_link_args in DmdLikeCompilerMixin
Previously it worked by accident because BasicLinkerIsCompilerMixin had
that method misspelled.
Diffstat (limited to 'mesonbuild/compilers/d.py')
-rw-r--r-- | mesonbuild/compilers/d.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py index f028bd5..e8355a8 100644 --- a/mesonbuild/compilers/d.py +++ b/mesonbuild/compilers/d.py @@ -393,6 +393,9 @@ class DmdLikeCompilerMixin: # their own arguments return Compiler.get_soname_args(self, *args, **kwargs) + def get_allow_undefined_link_args(self) -> typing.List[str]: + return self.linker.get_allow_undefined_args() + class DCompiler(Compiler): mscrt_args = { |