(ext, build_dir)
| 11 | config = Configuration('random', parent_package, top_path) |
| 12 | |
| 13 | def generate_libraries(ext, build_dir): |
| 14 | config_cmd = config.get_config_cmd() |
| 15 | libs = get_mathlibs() |
| 16 | if sys.platform == 'win32': |
| 17 | libs.extend(['Advapi32', 'Kernel32']) |
| 18 | ext.libraries.extend(libs) |
| 19 | return None |
| 20 | |
| 21 | # enable unix large file support on 32 bit systems |
| 22 | # (64 bit off_t, lseek -> lseek64 etc.) |
nothing calls this directly
no test coverage detected