Commit 2f704aa 1 parent 2018988 commit 2f704aa Copy full SHA for 2f704aa
File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def _compiler_version(cc):
14
14
if current_os () != 'windows' :
15
15
result = util .run_command (cc , '--version' , quiet = True )
16
16
lines = result .output .split ('\n ' )
17
-
17
+ print ( "DEBUG_CLANG: compiler version {}" . format ( lines ))
18
18
for text in lines :
19
19
# Apple clang
20
20
m = re .match (r'Apple (LLVM|clang) version (\d+)' , text )
@@ -38,6 +38,7 @@ def _compiler_version(cc):
38
38
def _find_compiler_tool (name , versions ):
39
39
# look for the default tool, and see if the version is in the search set
40
40
path = util .where (name , resolve_symlinks = False )
41
+ print ("DEBUG_CLANG: find compiler path {}" .format (path ))
41
42
if path :
42
43
version = _compiler_version (path )[1 ]
43
44
if version in versions :
You can’t perform that action at this time.
0 commit comments