We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8df945c commit f63c805Copy full SHA for f63c805
src/bootstrap/configure.py
@@ -160,6 +160,7 @@ def v(*args):
160
o("extended", "build.extended", "build an extended rust tool set")
161
162
v("tools", None, "List of extended tools will be installed")
163
+v("codegen-backends", None, "List of codegen backends to build")
164
v("build", "build.build", "GNUs ./configure syntax LLVM build triple")
165
v("host", None, "GNUs ./configure syntax LLVM host triples")
166
v("target", None, "GNUs ./configure syntax LLVM target triples")
@@ -339,6 +340,8 @@ def set(key, value):
339
340
set('target.{}.llvm-filecheck'.format(build()), value)
341
elif option.name == 'tools':
342
set('build.tools', value.split(','))
343
+ elif option.name == 'codegen-backends':
344
+ set('rust.codegen-backends', value.split(','))
345
elif option.name == 'host':
346
set('build.host', value.split(','))
347
elif option.name == 'target':
0 commit comments