(self)
| 870 | return cflags |
| 871 | |
| 872 | def get_base_name(self): |
| 873 | name = super().get_base_name() |
| 874 | # TODO Currently emscripten-based SjLj is the default mode, thus no |
| 875 | # suffixes. Change the default to wasm exception later. |
| 876 | match self.eh_mode: |
| 877 | case Exceptions.WASM_LEGACY: |
| 878 | name += '-legacysjlj' |
| 879 | case Exceptions.WASM: |
| 880 | name += '-wasmsjlj' |
| 881 | return name |
| 882 | |
| 883 | @classmethod |
| 884 | def variations(cls): |
nothing calls this directly
no test coverage detected