diff options
-rw-r--r-- | mesonbuild/environment.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 21d33a5..beaff76 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -1336,6 +1336,8 @@ class Environment: cls = MonoCompiler elif "Visual C#" in out: cls = VisualStudioCsCompiler + else: + continue self.coredata.add_lang_args(cls.language, cls, for_machine, self) return cls(comp, version, for_machine, info) |