()
| 2465 | return compiler._MSVCCompiler__version |
| 2466 | |
| 2467 | def get_build_architecture(): |
| 2468 | # Importing distutils.msvccompiler triggers a warning on non-Windows |
| 2469 | # systems, so delay the import to here. |
| 2470 | from distutils.msvccompiler import get_build_architecture |
| 2471 | return get_build_architecture() |
| 2472 | |
| 2473 | |
| 2474 | _cxx_ignore_flags = {'-Werror=implicit-function-declaration', '-std=c99'} |
no outgoing calls
no test coverage detected