Try to determine if the gcc that would be used is from cygwin.
()
| 280 | return tuple([_find_exe_version(cmd) for cmd in commands]) |
| 281 | |
| 282 | def is_cygwingcc(): |
| 283 | '''Try to determine if the gcc that would be used is from cygwin.''' |
| 284 | out_string = check_output(['gcc', '-dumpmachine']) |
| 285 | return out_string.strip().endswith(b'cygwin') |
no test coverage detected
searching dependent graphs…