MCPcopy Create free account
hub / github.com/catboost/catboost / built_so_name

Method built_so_name

catboost/python-package/mk_wheel.py:92–99  ·  view source on GitHub ↗
(self, module_name)

Source from the content-addressed store, hash-verified

90 return py_config, lang
91
92 def built_so_name(self, module_name):
93 if self._on_win():
94 return module_name + '.pyd'
95
96 if self.build_system == BUILD_SYSTEM.CMAKE:
97 return 'lib' + module_name + '.so'
98 elif self.build_system == BUILD_SYSTEM.YA:
99 return module_name + '.so'
100
101 def dst_so_name(self, module_name):
102 if self._on_win():

Callers 1

buildFunction · 0.95

Calls 1

_on_winMethod · 0.95

Tested by

no test coverage detected