()
| 422 | |
| 423 | |
| 424 | def is_invalid_windows_platform(): |
| 425 | # 'GCC' check is how you detect MinGW: |
| 426 | # https://github.com/msys2/MINGW-packages/blob/abd06ca92d876b9db05dd65f27d71c4ebe2673a9/mingw-w64-python2/0410-MINGW-build-extensions-with-GCC.patch#L53 |
| 427 | platform = sys.platform |
| 428 | ver = sys.version |
| 429 | return platform == "msys" or (platform == "win32" and ver and "GCC" in ver) |
| 430 | |
| 431 | |
| 432 | def _find_bazel_bin(): |
no outgoing calls
no test coverage detected
searching dependent graphs…