MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / get_base_name

Method get_base_name

tools/system_libs.py:872–881  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

get_base_nameMethod · 0.45

Tested by

no test coverage detected