Skip to content

Commit 2018988

Browse files
committed
added print statement for debug
1 parent c97f971 commit 2018988

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

builder/core/toolchain.py

+3
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,15 @@ def __init__(self, **kwargs):
148148
self.compiler_version, self.target, self.arch])
149149

150150
def compiler_path(self):
151+
print("DEBUG_CLANG: in compiler_path")
151152
assert not self.cross_compile
152153
if self.compiler == 'default':
153154
return Toolchain.default_compiler()[0]
155+
print("DEBUG_CLANG: try access compiler {}".format(self.compiler))
154156
return Toolchain.find_compiler(self.compiler, self.compiler_version if self.compiler_version != 'default' else None)[0]
155157

156158
def cxx_compiler_path(self):
159+
print("DEBUG_CLANG: in cxx_compiler_path, compiler is {}".format(self.compiler))
157160
assert not self.cross_compile
158161
compiler = self.compiler
159162
if self.compiler == 'default':

0 commit comments

Comments
 (0)