(self)
| 65 | } |
| 66 | |
| 67 | def get_flags_linker_so(self): |
| 68 | if sys.platform == 'darwin': |
| 69 | return ['-unsharedrts', |
| 70 | '-Wl,-bundle,-flat_namespace,-undefined,suppress'] |
| 71 | return BaseNAGFCompiler.get_flags_linker_so(self) |
| 72 | def get_flags_debug(self): |
| 73 | version = self.get_version() |
| 74 | if version and version > '6.1': |
nothing calls this directly
no test coverage detected