We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2018988 commit 2f704aaCopy full SHA for 2f704aa
builder/core/toolchain.py
@@ -14,7 +14,7 @@ def _compiler_version(cc):
14
if current_os() != 'windows':
15
result = util.run_command(cc, '--version', quiet=True)
16
lines = result.output.split('\n')
17
-
+ print("DEBUG_CLANG: compiler version {}".format(lines))
18
for text in lines:
19
# Apple clang
20
m = re.match(r'Apple (LLVM|clang) version (\d+)', text)
@@ -38,6 +38,7 @@ def _compiler_version(cc):
38
def _find_compiler_tool(name, versions):
39
# look for the default tool, and see if the version is in the search set
40
path = util.where(name, resolve_symlinks=False)
41
+ print("DEBUG_CLANG: find compiler path {}".format(path))
42
if path:
43
version = _compiler_version(path)[1]
44
if version in versions:
0 commit comments