diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-08-25 00:48:47 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-08-25 00:48:47 +0300 |
commit | 199c57d8d617f775efcd90a34aef1b8aeed98100 (patch) | |
tree | 4ffc11af04b654cee2498ffa90d317c6e6e48648 /compilers.py | |
parent | 6b5734385f3ad74db33d4b4152d5abcfd0832a10 (diff) | |
download | meson-199c57d8d617f775efcd90a34aef1b8aeed98100.zip meson-199c57d8d617f775efcd90a34aef1b8aeed98100.tar.gz meson-199c57d8d617f775efcd90a34aef1b8aeed98100.tar.bz2 |
Added debugging output.
Diffstat (limited to 'compilers.py')
-rw-r--r-- | compilers.py | 2 |
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: |