aboutsummaryrefslogtreecommitdiff
path: root/compilers.py
diff options
context:
space:
mode:
Diffstat (limited to 'compilers.py')
-rw-r--r--compilers.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py
index 38d9b33..5a3a2f4 100644
--- a/compilers.py
+++ b/compilers.py
@@ -239,6 +239,8 @@ class CCompiler():
cmdlist = self.exe_wrapper + [binary_name]
else:
cmdlist = [binary_name]
+ mlog.debug('Running C test binary, cross is %s.' % str(self.is_cross))
+ mlog.debug('Command: ' + ' '.join(cmdlist))
pe = subprocess.Popen(cmdlist)
pe.wait()
if pe.returncode != 0: