(compiler_flags: str, compiler_py_flags_nodist: str)
| 23 | |
| 24 | |
| 25 | def get_extra_flags(compiler_flags: str, compiler_py_flags_nodist: str) -> list[str]: |
| 26 | flags = sysconfig.get_config_var(compiler_flags) |
| 27 | py_flags_nodist = sysconfig.get_config_var(compiler_py_flags_nodist) |
| 28 | if flags is None or py_flags_nodist is None: |
| 29 | return [] |
| 30 | return f"{flags} {py_flags_nodist}".split() |
| 31 | |
| 32 | |
| 33 | def fixup_build_ext(cmd: Incomplete) -> None: |
no test coverage detected
searching dependent graphs…