(self)
| 742 | return [combo for combo in combos if not combo['is_mt'] or not combo['is_ww']] |
| 743 | |
| 744 | def can_build(self): |
| 745 | # Wasm workers do not support dynamic linking. |
| 746 | return super().can_build() and not (settings.MAIN_MODULE and self.is_ww) |
| 747 | |
| 748 | |
| 749 | class DebugLibrary(Library): |