Merge branch 'add-clang++-support-to-cygwin' into 'master'

Add support for clang++ on cygwin

See merge request ita1024/waf!2280
This commit is contained in:
swaldhoer 2020-03-01 12:40:38 +00:00
commit 67f1a46123
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'],