提交 5c126bde 编写于 作者: B bors

Auto merge of #43384 - segevfiner:bootstrap-build-argument-fix, r=aidanhs

rustbuild: Fix the --build argument to bootstrap.py

This makes the --build argument also apply for the downloading of the stage0 toolchain and building rustbuild.

Fixes #42116
......@@ -596,6 +596,7 @@ class RustBuild(object):
def bootstrap():
parser = argparse.ArgumentParser(description='Build rust')
parser.add_argument('--config')
parser.add_argument('--build')
parser.add_argument('--clean', action='store_true')
parser.add_argument('-v', '--verbose', action='store_true')
......@@ -669,7 +670,7 @@ def bootstrap():
rb.update_submodules()
# Fetch/build the bootstrap
rb.build = rb.build_triple()
rb.build = args.build or rb.build_triple()
rb.download_stage0()
sys.stdout.flush()
rb.build_bootstrap()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册