Add support for clang++ on cygwin

This commit is contained in:
swaldhoer 2020-03-01 13:32:53 +01:00
parent 64350343a2
commit 6182a905ea
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ from waflib.Logs import debug
cxx_compiler = {
'win32': ['msvc', 'g++', 'clang++'],
'cygwin': ['g++'],
'cygwin': ['g++', 'clang++'],
'darwin': ['clang++', 'g++'],
'aix': ['xlc++', 'g++', 'clang++'],
'linux': ['g++', 'clang++', 'icpc'],