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 45bcbd9 commit 3a2392bCopy full SHA for 3a2392b
src/bootstrap/bootstrap.py
@@ -314,8 +314,9 @@ def default_build_triple(verbose):
314
315
# ON NetBSD, use `uname -p` to set the CPU type
316
if kernel == 'NetBSD':
317
- cputype = subprocess.check_output(
318
- ['uname', '-p']).strip().decode(default_encoding)
+ cputype = (
+ 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,
322
# at least for the subset of platforms we're willing to target.
0 commit comments