compiler: transparently handle Windows newlines in RunTool.

pull/1017/head
whitequark 2018-05-05 01:43:00 +00:00
parent 4f29d9134f
commit 9dc7efefe4
1 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,8 @@ class RunTool:
for argument in self._pattern:
cmdline.append(argument.format(**self._tempnames))
process = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
process = subprocess.Popen(cmdline, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
universal_newlines=True)
stdout, stderr = process.communicate()
if process.returncode != 0:
raise Exception("{} invocation failed: {}".