aboutsummaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-06-24 10:56:08 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-06-24 10:56:08 -0700
commit637ad69e97761fde5ec5dee882b14f3bb49f561e (patch)
treed4524f4d0312239be30096e49f36fe4c32a9941e /emcc
parentc001e260ef766875fba65ae1f9848cfe6add90c7 (diff)
add space in debug output
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc b/emcc
index 0b75fce4..d90d63ed 100755
--- a/emcc
+++ b/emcc
@@ -1063,7 +1063,7 @@ try:
output_file = in_temp(unsuffixed(uniquename(input_file)) + '.o')
temp_files.append(output_file)
args = newargs + ['-emit-llvm', '-c', input_file, '-o', output_file]
- logging.debug("running:" + call + ' '.join(args))
+ logging.debug("running:" + call + ' ' + ' '.join(args))
execute([call] + args) # let compiler frontend print directly, so colors are saved (PIPE kills that)
if not os.path.exists(output_file):
logging.error('compiler frontend failed to generate LLVM bitcode, halting')