Skip to content

Commit cdc4147

Browse files
[lldb][shell tests] Properly fix fallout from c8031c3
1 parent 25b6a15 commit cdc4147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/Shell/helper/toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def use_support_substitutions(config):
226226
except OSError:
227227
res = -1
228228
if res == 0 and out:
229-
sdk_path = str(out)
229+
sdk_path = out.decode("utf-8")
230230
llvm_config.lit_config.note("using SDKROOT: %r" % sdk_path)
231231
host_flags += ["-isysroot", sdk_path]
232232
elif sys.platform != "win32":

0 commit comments

Comments
 (0)