(self)
| 1993 | super().__init__(**kwargs) |
| 1994 | |
| 1995 | def get_cflags(self): |
| 1996 | cflags = super().get_cflags() |
| 1997 | cflags.append('-std=c++20') |
| 1998 | if not self.with_rtti: |
| 1999 | cflags += ['-fno-rtti', '-DEMSCRIPTEN_HAS_UNBOUND_TYPE_NAMES=0'] |
| 2000 | return cflags |
| 2001 | |
| 2002 | @classmethod |
| 2003 | def vary_on(cls): |
nothing calls this directly
no test coverage detected