(self)
| 16 | |
| 17 | class BaseIntelFCompiler(FCompiler): |
| 18 | def update_executables(self): |
| 19 | f = dummy_fortran_file() |
| 20 | self.executables['version_cmd'] = ['<F77>', '-FI', '-V', '-c', |
| 21 | f + '.f', '-o', f + '.o'] |
| 22 | |
| 23 | def runtime_library_dir_option(self, dir): |
| 24 | # TODO: could use -Xlinker here, if it's supported |
nothing calls this directly
no test coverage detected