From 2961adb8c89fa8ccfbc8e24cd9f1115bd3abeee1 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 30 Sep 2022 14:46:10 -0400 Subject: Compilers: Keep ccache and exelist separated Only combine them in the Compiler base class, this will make easier to run compiler without ccache. --- mesonbuild/compilers/cs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/cs.py') diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index 64cca96..14fcfd7 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -45,7 +45,7 @@ class CsCompiler(BasicLinkerIsCompilerMixin, Compiler): def __init__(self, exelist: T.List[str], version: str, for_machine: MachineChoice, info: 'MachineInfo', runner: T.Optional[str] = None): - super().__init__(exelist, version, for_machine, info) + super().__init__([], exelist, version, for_machine, info) self.runner = runner @classmethod -- cgit v1.1