(self)
| 26 | pic_flags = ['-xcode=pic32'] |
| 27 | |
| 28 | def get_flags_f77(self): |
| 29 | ret = ["-ftrap=%none"] |
| 30 | if (self.get_version() or '') >= '7': |
| 31 | ret.append("-f77") |
| 32 | else: |
| 33 | ret.append("-fixed") |
| 34 | return ret |
| 35 | def get_opt(self): |
| 36 | return ['-fast', '-dalign'] |
| 37 | def get_arch(self): |
nothing calls this directly
no test coverage detected