From 2c0fbe161d61d2d15d29892456544442ab1c4ff6 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 21 Sep 2020 10:38:17 -0700 Subject: compilers: make is_cross part of the base Compiler class Every class needs to set this, so it should be part of the base. For classes that require is_cross, the positional argument remains in their signature. For those that don't, they just allow the base class to set their value to it's default of False. --- mesonbuild/compilers/cs.py | 1 - 1 file changed, 1 deletion(-) (limited to 'mesonbuild/compilers/cs.py') diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index cc5d6ad..b269aec 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -40,7 +40,6 @@ class CsCompiler(BasicLinkerIsCompilerMixin, Compiler): info: 'MachineInfo', comp_id, runner=None): super().__init__(exelist, version, for_machine, info) self.id = comp_id - self.is_cross = False self.runner = runner @classmethod -- cgit v1.1