MCPcopy Index your code
hub / github.com/emscripten-core/emsdk / llvm_build_dir

Function llvm_build_dir

emsdk.py:870–878  ·  view source on GitHub ↗
(tool)

Source from the content-addressed store, hash-verified

868
869# The root directory of the build.
870def llvm_build_dir(tool):
871 generator_suffix = cmake_generator_prefix()
872 bitness_suffix = '_32' if tool.bitness == 32 else '_64'
873
874 if tool.git_branch:
875 build_dir = 'build_' + tool.git_branch.replace(os.sep, '-') + generator_suffix + bitness_suffix
876 else:
877 build_dir = 'build_' + tool.version + generator_suffix + bitness_suffix
878 return build_dir
879
880
881def exe_suffix(filename):

Callers 4

llvm_build_bin_dirFunction · 0.85
build_llvmFunction · 0.85
build_ninjaFunction · 0.85
build_ccacheFunction · 0.85

Calls 1

cmake_generator_prefixFunction · 0.85

Tested by

no test coverage detected