diff options
| -rwxr-xr-x | tools/thumb-cc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/thumb-cc.py b/tools/thumb-cc.py index 2c83474..53d1051 100755 --- a/tools/thumb-cc.py +++ b/tools/thumb-cc.py @@ -38,5 +38,5 @@ gcc = Popen(args + ['-mthumb'], stdout=PIPE, stderr=PIPE) if gcc.returncode != 0: # thumb failed, try outputting arm execv(args[0], args) -stdout.write(out) -stderr.write(err) +stdout.write(out.decode("utf-8")) +stderr.write(err.decode("utf-8")) |