Skip to content

Commit f451928

Browse files
bjorn3XAMPPRocky
authored andcommitted
Update some config locations
1 parent 82fcae0 commit f451928

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.toml.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ changelog-seen = 2
518518
# This is an array of the codegen backends that will be compiled for the rustc
519519
# that's being compiled. The default is to only build the LLVM codegen backend,
520520
# and currently the only standard options supported are `"llvm"` and `"cranelift"`.
521-
#codegen-backends = ["llvm"]
521+
#codegen-backends = ["llvm", "cranelift"]
522522

523523
# Indicates whether LLD will be compiled and made available in the sysroot for
524524
# rustc to execute.

src/bootstrap/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def set(key, value):
344344
elif option.name == 'target':
345345
set('build.target', value.split(','))
346346
elif option.name == 'full-tools':
347-
set('rust.codegen-backends', ['llvm'])
347+
set('rust.codegen-backends', ['llvm', 'cranelift'])
348348
set('rust.lld', True)
349349
set('rust.llvm-tools', True)
350350
set('build.extended', True)

0 commit comments

Comments
 (0)