Skip to content

Commit 12ba73e

Browse files
committed
Disable llvm-bitcode-linker in the default bootstrap profiles
1 parent 63491e1 commit 12ba73e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Diff for: src/bootstrap/defaults/config.compiler.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lto = "off"
2020
# This can be helpful for profiling at a small performance cost.
2121
frame-pointers = true
2222
# Build the llvm-bitcode-linker as it is required for running nvptx tests
23-
llvm-bitcode-linker = true
23+
llvm-bitcode-linker = false
2424

2525
[llvm]
2626
# Having this set to true disrupts compiler development workflows for people who use `llvm.download-ci-llvm = true`

Diff for: src/bootstrap/defaults/config.dist.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ download-ci-llvm = false
1717
channel = "nightly"
1818
download-rustc = false
1919
# Build the llvm-bitcode-linker as it is required for running nvptx tests
20-
llvm-bitcode-linker = true
20+
llvm-bitcode-linker = false
2121

2222
[dist]
2323
# Use better compression when preparing tarballs.

Diff for: src/bootstrap/defaults/config.library.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ incremental = true
1111
# Make the compiler and standard library faster to build, at the expense of a ~20% runtime slowdown.
1212
lto = "off"
1313
# Build the llvm-bitcode-linker as it is required for running nvptx tests
14-
llvm-bitcode-linker = true
14+
llvm-bitcode-linker = false
1515

1616
[llvm]
1717
# Will download LLVM from CI if available on your platform.

Diff for: src/bootstrap/defaults/config.tools.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ incremental = true
1313
# setting) and the stage2 toolchain should therefore be used for these defaults.
1414
download-rustc = "if-unchanged"
1515
# Build the llvm-bitcode-linker as it is required for running nvptx tests
16-
llvm-bitcode-linker = true
16+
llvm-bitcode-linker = false
1717

1818
[build]
1919
# Document with the in-tree rustdoc by default, since `download-rustc` makes it quick to compile.

0 commit comments

Comments
 (0)