(self)
| 103 | return opt |
| 104 | |
| 105 | def get_flags(self): |
| 106 | opt = FCompiler.get_flags(self) |
| 107 | if os.name != 'nt': |
| 108 | opt.extend(['-s']) |
| 109 | if self.get_version(): |
| 110 | if self.get_version()>='8.2': |
| 111 | opt.append('-fpic') |
| 112 | return opt |
| 113 | |
| 114 | def get_flags_f77(self): |
| 115 | opt = FCompiler.get_flags_f77(self) |
nothing calls this directly
no test coverage detected