From b5e077fce8fe8fd892c76c6c4d474751a680503a Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 10 Apr 2020 12:33:34 -0700 Subject: compilers: Move things out of clike One method belongs in the base Compiler class, the other belongs in the GnuLikeCompiler class. --- mesonbuild/compilers/compilers.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mesonbuild/compilers/compilers.py') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 2caddde..52b9592 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1201,6 +1201,9 @@ class Compiler: """ return [] + def get_coverage_link_args(self) -> T.List[str]: + return self.linker.get_coverage_args() + def get_largefile_args(compiler): ''' -- cgit v1.1