diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-22 10:49:46 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 15:05:00 -0700 |
| commit | 1513aa437dd397934eff176c81d742a78e54ddb9 (patch) | |
| tree | fb45fca556eabd3fd1fd0e05335fd2f87e521cd5 /mesonbuild/compilers/mixins/clike.py | |
| parent | fe97977b00e2b3c0fec9bc85aa0bf3e11559802a (diff) | |
| download | meson-1513aa437dd397934eff176c81d742a78e54ddb9.tar.gz | |
compilers: move split_shlib_to_parts to the base compiler
Only the GnuLikeCompiler overrides this, and it's implemented multiple
places
Diffstat (limited to 'mesonbuild/compilers/mixins/clike.py')
| -rw-r--r-- | mesonbuild/compilers/mixins/clike.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/mesonbuild/compilers/mixins/clike.py b/mesonbuild/compilers/mixins/clike.py index e146f5f62..2802aafc4 100644 --- a/mesonbuild/compilers/mixins/clike.py +++ b/mesonbuild/compilers/mixins/clike.py @@ -169,9 +169,6 @@ class CLikeCompiler(Compiler): # Almost every compiler uses this for disabling warnings return ['-w'] - def split_shlib_to_parts(self, fname: str) -> T.Tuple[T.Optional[str], str]: - return None, fname - def depfile_for_object(self, objfile: str) -> str: return objfile + '.' + self.get_depfile_suffix() |
