aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/d.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-07-18 15:02:39 +0300
committerGitHub <noreply@github.com>2021-07-18 15:02:39 +0300
commit6614c7352645770d68bc1adb782fef4da323815a (patch)
tree1e2c0e6da45268d72a272221a0eb76801d9df2aa /mesonbuild/compilers/d.py
parent116e4d4850a61a740d2a8642866452740e359750 (diff)
parent3efed376c376b6275024c5600b30a6c5e12edf97 (diff)
downloadmeson-6614c7352645770d68bc1adb782fef4da323815a.zip
meson-6614c7352645770d68bc1adb782fef4da323815a.tar.gz
meson-6614c7352645770d68bc1adb782fef4da323815a.tar.bz2
Merge pull request #8996 from bonzini/fix8746
Do not add SONAME to shared modules
Diffstat (limited to 'mesonbuild/compilers/d.py')
-rw-r--r--mesonbuild/compilers/d.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py
index b5ec905..eb1cf74 100644
--- a/mesonbuild/compilers/d.py
+++ b/mesonbuild/compilers/d.py
@@ -468,10 +468,9 @@ class DmdLikeCompilerMixin(CompilerMixinBase):
def get_soname_args(self, env: 'Environment', prefix: str, shlib_name: str,
suffix: str, soversion: str,
- darwin_versions: T.Tuple[str, str],
- is_shared_module: bool) -> T.List[str]:
+ darwin_versions: T.Tuple[str, str]) -> T.List[str]:
sargs = super().get_soname_args(env, prefix, shlib_name, suffix,
- soversion, darwin_versions, is_shared_module)
+ soversion, darwin_versions)
# LDC and DMD actually do use a linker, but they proxy all of that with
# their own arguments