diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-07-18 15:02:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 15:02:39 +0300 |
commit | 6614c7352645770d68bc1adb782fef4da323815a (patch) | |
tree | 1e2c0e6da45268d72a272221a0eb76801d9df2aa /mesonbuild/compilers/cuda.py | |
parent | 116e4d4850a61a740d2a8642866452740e359750 (diff) | |
parent | 3efed376c376b6275024c5600b30a6c5e12edf97 (diff) | |
download | meson-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/cuda.py')
-rw-r--r-- | mesonbuild/compilers/cuda.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mesonbuild/compilers/cuda.py b/mesonbuild/compilers/cuda.py index 4c0d0a6..4a14ae9 100644 --- a/mesonbuild/compilers/cuda.py +++ b/mesonbuild/compilers/cuda.py @@ -650,11 +650,9 @@ class CudaCompiler(Compiler): 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]: return self._to_host_flags(self.host_compiler.get_soname_args( - env, prefix, shlib_name, suffix, soversion, darwin_versions, - is_shared_module), _Phase.LINKER) + env, prefix, shlib_name, suffix, soversion, darwin_versions), _Phase.LINKER) def get_compile_only_args(self) -> T.List[str]: return ['-c'] |