(self)
| 57 | return ['-fPIC'] |
| 58 | |
| 59 | def get_flags_opt(self): # Scipy test failures with -O2 |
| 60 | v = self.get_version() |
| 61 | mpopt = 'openmp' if v and v < '15' else 'qopenmp' |
| 62 | return ['-fp-model', 'strict', '-O1', |
| 63 | '-assume', 'minus0', '-{}'.format(mpopt)] |
| 64 | |
| 65 | def get_flags_arch(self): |
| 66 | return [] |
nothing calls this directly
no test coverage detected