Replacement for outdated version of get_msvcr from cygwinccompiler
()
| 32 | get_build_architecture) |
| 33 | |
| 34 | def get_msvcr_replacement(): |
| 35 | """Replacement for outdated version of get_msvcr from cygwinccompiler""" |
| 36 | msvcr = msvc_runtime_library() |
| 37 | return [] if msvcr is None else [msvcr] |
| 38 | |
| 39 | |
| 40 | # Useful to generate table of symbols from a dll |
nothing calls this directly
no test coverage detected