(self)
| 89 | return opt |
| 90 | |
| 91 | def get_libraries(self): |
| 92 | opt = FCompiler.get_libraries(self) |
| 93 | if self.get_version() >= '11.0': |
| 94 | opt.extend(['af90math', 'afio', 'af77math', 'amisc']) |
| 95 | elif self.get_version() >= '10.0': |
| 96 | opt.extend(['af90math', 'afio', 'af77math', 'U77']) |
| 97 | elif self.get_version() >= '8.0': |
| 98 | opt.extend(['f90math', 'fio', 'f77math', 'U77']) |
| 99 | else: |
| 100 | opt.extend(['fio', 'f90math', 'fmath', 'U77']) |
| 101 | if os.name =='nt': |
| 102 | opt.append('COMDLG32') |
| 103 | return opt |
| 104 | |
| 105 | def get_flags(self): |
| 106 | opt = FCompiler.get_flags(self) |
nothing calls this directly
no test coverage detected