(self)
| 707 | super().__init__(**kwargs) |
| 708 | |
| 709 | def get_cflags(self): |
| 710 | cflags = super().get_cflags() |
| 711 | if self.is_mt: |
| 712 | cflags += ['-pthread'] |
| 713 | if self.is_ww: |
| 714 | cflags += ['-sWASM_WORKERS'] |
| 715 | return cflags |
| 716 | |
| 717 | def get_base_name(self): |
| 718 | name = super().get_base_name() |
nothing calls this directly
no test coverage detected