Skip to content

Commit 4ed87e2

Browse files
committed
Decode STDERR from compiler
1 parent 01f02b4 commit 4ed87e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ def parse_output(self, output):
958958

959959
def compile_output(self, output=[]):
960960
_rc = output[0]
961-
_stderr = output[1]
961+
_stderr = output[1].decode("utf-8")
962962
command = output[2]
963963

964964
# Parse output for Warnings and Errors

0 commit comments

Comments
 (0)