MCPcopy Create free account
hub / github.com/boostorg/build / default_paths

Function default_paths

v2/tools/msvc.py:880–891  ·  view source on GitHub ↗
(version = None)

Source from the content-addressed store, hash-verified

878# list of all known default paths (if no version is given)
879#
880def default_paths(version = None):
881 possible_paths = []
882 if version:
883 path = default_path(version)
884 if path:
885 possible_paths.append(path)
886 else:
887 for i in _known_versions:
888 path = default_path(i)
889 if path:
890 possible_paths.append(path)
891 return possible_paths
892
893
894class MsvcLinkingGenerator(builtin.LinkingGenerator):

Callers 1

configure_reallyFunction · 0.85

Calls 2

default_pathFunction · 0.85
appendMethod · 0.80

Tested by

no test coverage detected