(self)
| 44 | CCompilerOpt.__init__(self, None, **kwargs) |
| 45 | |
| 46 | def __repr__(self): |
| 47 | return textwrap.dedent("""\ |
| 48 | <<<< |
| 49 | march : {} |
| 50 | compiler : {} |
| 51 | ---------------- |
| 52 | {} |
| 53 | >>>> |
| 54 | """).format(self.cc_march, self.cc_name, self.report()) |
| 55 | |
| 56 | def dist_compile(self, sources, flags, **kwargs): |
| 57 | assert(isinstance(sources, list)) |