We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a2392b commit 2f1b6d1Copy full SHA for 2f1b6d1
src/bootstrap/bootstrap.py
@@ -313,9 +313,9 @@ def default_build_triple(verbose):
313
kernel, cputype, processor = uname.decode(default_encoding).split(maxsplit=2)
314
315
# ON NetBSD, use `uname -p` to set the CPU type
316
- if kernel == 'NetBSD':
+ if kernel == "NetBSD":
317
cputype = (
318
- subprocess.check_output(['uname', '-p']).strip().decode(default_encoding)
+ subprocess.check_output(["uname", "-p"]).strip().decode(default_encoding)
319
)
320
321
# The goal here is to come up with the same triple as LLVM would,
0 commit comments