Customize compiler path and configuration variables. This customization is performed when the first extension module build is requested in distutils.sysconfig.customize_compiler.
(_config_vars)
| 478 | |
| 479 | |
| 480 | def customize_compiler(_config_vars): |
| 481 | """Customize compiler path and configuration variables. |
| 482 | |
| 483 | This customization is performed when the first |
| 484 | extension module build is requested |
| 485 | in distutils.sysconfig.customize_compiler. |
| 486 | """ |
| 487 | |
| 488 | # Find a compiler to use for extension module builds |
| 489 | _find_appropriate_compiler(_config_vars) |
| 490 | |
| 491 | # Remove ppc arch flags if not supported here |
| 492 | _remove_unsupported_archs(_config_vars) |
| 493 | |
| 494 | # Allow user to override all archs with ARCHFLAGS env var |
| 495 | _override_all_archs(_config_vars) |
| 496 | |
| 497 | return _config_vars |
| 498 | |
| 499 | |
| 500 | def get_platform_osx(_config_vars, osname, release, machine): |
no test coverage detected
searching dependent graphs…