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

Method get_base_name

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

Source from the content-addressed store, hash-verified

1822 return 'lib%s' % self.malloc
1823
1824 def get_base_name(self):
1825 name = super().get_base_name()
1826 if self.is_debug and not self.memvalidate and not self.verbose:
1827 name += '-debug'
1828 if self.is_tracing:
1829 name += '-tracing'
1830 return name
1831
1832 def can_use(self):
1833 return super().can_use() and settings.MALLOC not in {'none', 'mimalloc'}

Callers

nothing calls this directly

Calls 1

get_base_nameMethod · 0.45

Tested by

no test coverage detected