()
| 240 | |
| 241 | |
| 242 | def _get_default_compiler(): |
| 243 | if re.match('cygwin.*', sys.platform) is not None: |
| 244 | return 'unix' |
| 245 | if os.name == 'nt': |
| 246 | return 'msvc' |
| 247 | if sys.platform == 'darwin' and 'clang' in platform.python_compiler(): |
| 248 | return 'clang' |
| 249 | return 'unix' |
| 250 | |
| 251 | |
| 252 | def _get_preprocessor(tool): |
no test coverage detected
searching dependent graphs…