about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorJoshua Nelson <jyn.nelson@redjack.com>2023-03-01 10:47:33 -0600
committerJoshua Nelson <jyn.nelson@redjack.com>2023-03-01 10:49:28 -0600
commitdaf99a437ee3e7de9f7bb7b7f2805e4699246f3d (patch)
treed9fd4ed8c3422009a3fff0fd5c970b998cad5bac /src/doc
parent6209e6c5983f93526da54db1b66beb3f1d658437 (diff)
Remove `llvm.skip-rebuild` option
This was added to in 2019 to speed up rebuild times when LLVM was
modified. Now that download-ci-llvm exists, I don't think it makes sense
to support an unsound option like this that can lead to miscompiles; and
the code cleanup is nice too.
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/rustc/src/platform-support/armeb-unknown-linux-gnueabi.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/doc/rustc/src/platform-support/armeb-unknown-linux-gnueabi.md b/src/doc/rustc/src/platform-support/armeb-unknown-linux-gnueabi.md
index 432e0cfc960..32d3440f1dc 100644
--- a/src/doc/rustc/src/platform-support/armeb-unknown-linux-gnueabi.md
+++ b/src/doc/rustc/src/platform-support/armeb-unknown-linux-gnueabi.md
@@ -26,7 +26,6 @@ Therefore, you can build Rust with support for the target by adding it to the ta
 ```toml
 [llvm]
 download-ci-llvm = false
-skip-rebuild = true
 optimize = true
 ninja = true
 targets = "ARM;X86"