diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-09-23 14:33:20 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 15:05:00 -0700 |
commit | 224a75248918e35e0cb55487c558ef6fa7e84553 (patch) | |
tree | 044b714f84db09fa180faa5acdddc6b6d1452a00 /mesonbuild/compilers/mixins | |
parent | 413f4d87e96905dcfcd082af9b59b9396d19f4b8 (diff) | |
download | meson-224a75248918e35e0cb55487c558ef6fa7e84553.zip meson-224a75248918e35e0cb55487c558ef6fa7e84553.tar.gz meson-224a75248918e35e0cb55487c558ef6fa7e84553.tar.bz2 |
compilres: move depfile_for_object to compiler
Diffstat (limited to 'mesonbuild/compilers/mixins')
-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 2802aaf..840dc30 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 depfile_for_object(self, objfile: str) -> str: - return objfile + '.' + self.get_depfile_suffix() - def get_depfile_suffix(self) -> str: return 'd' |