MCPcopy
hub / github.com/emscripten-core/emsdk / installation_path

Method installation_path

emsdk.py:1892–1899  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1890 # Specifies the target path where this tool will be installed to. This could
1891 # either be a directory or a filename (e.g. in case of node.js)
1892 def installation_path(self):
1893 if self.install_path:
1894 pth = self.expand_vars(self.install_path)
1895 return sdk_path(pth)
1896 p = self.version
1897 if self.bitness and self.append_bitness:
1898 p += f'_{self.bitness}bit'
1899 return sdk_path(os.path.join(self.id, p))
1900
1901 # Specifies the target directory this tool will be installed to.
1902 def installation_dir(self):

Callers 13

installation_dirMethod · 0.95
get_version_file_pathMethod · 0.95
is_installedMethod · 0.95
install_toolMethod · 0.95
uninstallMethod · 0.95
llvm_build_bin_dirFunction · 0.80
build_llvmFunction · 0.80
build_ninjaFunction · 0.80
build_ccacheFunction · 0.80
download_firefoxFunction · 0.80
emscripten_npm_installFunction · 0.80
binaryen_build_rootFunction · 0.80

Calls 2

expand_varsMethod · 0.95
sdk_pathFunction · 0.85

Tested by

no test coverage detected