Set clang_type to CLANG_WIN on windows.

pull/1730/merge
Alan 8 years ago committed by Jussi Pakkanen
parent fb4ab84491
commit 53e47d42f0
  1. 2
      mesonbuild/environment.py

@ -481,6 +481,8 @@ class Environment:
if 'clang' in out:
if 'Apple' in out or for_darwin(want_cross, self):
cltype = CLANG_OSX
elif 'windows' in out or for_windows(want_cross, self):
cltype = CLANG_WIN
else:
cltype = CLANG_STANDARD
cls = ClangCCompiler if lang == 'c' else ClangCPPCompiler

Loading…
Cancel
Save