diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-12-20 20:42:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 20:42:01 +0200 |
commit | b6dd50db31b7b5a1a33aa205b62c53aee979ecb3 (patch) | |
tree | 1b3117c4cb6264934cad16e970dfb8e3e81d60b3 /mesonbuild/compilers/cs.py | |
parent | 0560478f756fa7c4a225fa6617e6c524a587a381 (diff) | |
parent | c772841af700676151e5e9616b7896e9a04f8e65 (diff) | |
download | meson-b6dd50db31b7b5a1a33aa205b62c53aee979ecb3.zip meson-b6dd50db31b7b5a1a33aa205b62c53aee979ecb3.tar.gz meson-b6dd50db31b7b5a1a33aa205b62c53aee979ecb3.tar.bz2 |
Merge pull request #2791 from behlec/compiler-version
Add more version information to compiler
Diffstat (limited to 'mesonbuild/compilers/cs.py')
-rw-r--r-- | mesonbuild/compilers/cs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/cs.py b/mesonbuild/compilers/cs.py index b8a4d13..dd7a433 100644 --- a/mesonbuild/compilers/cs.py +++ b/mesonbuild/compilers/cs.py @@ -19,9 +19,9 @@ from ..mesonlib import EnvironmentException from .compilers import Compiler, mono_buildtype_args class MonoCompiler(Compiler): - def __init__(self, exelist, version): + def __init__(self, exelist, version, **kwargs): self.language = 'cs' - super().__init__(exelist, version) + super().__init__(exelist, version, **kwargs) self.id = 'mono' self.monorunner = 'mono' |