(self)
| 363 | return opt |
| 364 | |
| 365 | def get_libraries(self): |
| 366 | opt = GnuFCompiler.get_libraries(self) |
| 367 | if sys.platform == 'darwin': |
| 368 | opt.remove('cc_dynamic') |
| 369 | if sys.platform == 'win32': |
| 370 | c_compiler = self.c_compiler |
| 371 | if c_compiler and c_compiler.compiler_type == "msvc": |
| 372 | if "gcc" in opt: |
| 373 | i = opt.index("gcc") |
| 374 | opt.insert(i + 1, "mingwex") |
| 375 | opt.insert(i + 1, "mingw32") |
| 376 | c_compiler = self.c_compiler |
| 377 | if c_compiler and c_compiler.compiler_type == "msvc": |
| 378 | return [] |
| 379 | else: |
| 380 | pass |
| 381 | return opt |
| 382 | |
| 383 | def get_target(self): |
| 384 | try: |
nothing calls this directly
no test coverage detected