(self, build_info, lib_name, libraries)
| 301 | |
| 302 | class new_build_clib(build_clib): |
| 303 | def build_a_library(self, build_info, lib_name, libraries): |
| 304 | build_info['extra_cflags'] = std_c_flags(self) |
| 305 | build_info['extra_cxxflags'] = std_cxx_flags(self) |
| 306 | build_clib.build_a_library(self, build_info, lib_name, libraries) |
| 307 | |
| 308 | class new_build_ext(build_ext): |
| 309 | def build_extension(self, ext): |
nothing calls this directly
no test coverage detected