compiler: Add missing needs_static_linker to base Compiler class

pull/10453/head
Dylan Baker 3 years ago committed by Eli Schwartz
parent 39ba552811
commit d553748b60
  1. 3
      mesonbuild/compilers/compilers.py

@ -1270,6 +1270,9 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta):
"""Arguments to completely disable warnings."""
return []
def needs_static_linker(self) -> bool:
raise NotImplementedError(f'There is no static linker for {self.language}')
def get_global_options(lang: str,
comp: T.Type[Compiler],

Loading…
Cancel
Save