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.
2 parents 846ea58 + c2863dd commit e730697Copy full SHA for e730697
src/bootstrap/bootstrap.py
@@ -230,6 +230,9 @@ def default_build_triple():
230
err = "unknown OS type: {}".format(ostype)
231
sys.exit(err)
232
233
+ if cputype == 'powerpc' and ostype == 'unknown-freebsd':
234
+ cputype = subprocess.check_output(
235
+ ['uname', '-p']).strip().decode(default_encoding)
236
cputype_mapper = {
237
'BePC': 'i686',
238
'aarch64': 'aarch64',
0 commit comments