(self)
| 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'} |
nothing calls this directly
no test coverage detected