Add support for GNU/kFreeBSD

Where default compiler is gcc
This commit is contained in:
Mathieu Parent 2021-12-13 21:27:46 +01:00
parent 3a036329e4
commit ae97dbf59b
2 changed files with 26 additions and 24 deletions

View File

@ -47,6 +47,7 @@ c_compiler = {
'osf1V': ['gcc'],
'gnu': ['gcc', 'clang'],
'java': ['gcc', 'msvc', 'clang', 'icc'],
'gnukfreebsd': ['gcc', 'clang'],
'default': ['clang', 'gcc'],
}
"""

View File

@ -48,6 +48,7 @@ cxx_compiler = {
'osf1V': ['g++'],
'gnu': ['g++', 'clang++'],
'java': ['g++', 'msvc', 'clang++', 'icpc'],
'gnukfreebsd': ['g++', 'clang++'],
'default': ['clang++', 'g++']
}
"""