We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 910be1b commit d68eea6Copy full SHA for d68eea6
src/bootstrap/bootstrap.py
@@ -256,7 +256,7 @@ def default_build_triple(verbose):
256
if uname is None:
257
return 'x86_64-pc-windows-msvc'
258
259
- kernel, cputype, processor = uname.decode(default_encoding).split()
+ kernel, cputype, processor = uname.decode(default_encoding).split(maxsplit=2)
260
261
# The goal here is to come up with the same triple as LLVM would,
262
# at least for the subset of platforms we're willing to target.
0 commit comments