Replace -Zno-parallel-llvm with -Zno-parallel-backend

This was renamed by https://github.com/rust-lang/rust/pull/116791.
This commit is contained in:
Tim Neumann 2024-04-03 18:41:08 +02:00 committed by Tshepang Mbambo
parent 84bbfc3a5c
commit 4375d8579c
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ tutorial above):
- The `-Z print-llvm-passes` option will print out LLVM optimization passes being run - The `-Z print-llvm-passes` option will print out LLVM optimization passes being run
- The `-Z time-llvm-passes` option measures the time of each LLVM pass - The `-Z time-llvm-passes` option measures the time of each LLVM pass
- The `-Z verify-llvm-ir` option will verify the LLVM IR for correctness - The `-Z verify-llvm-ir` option will verify the LLVM IR for correctness
- The `-Z no-parallel-llvm` will disable parallel compilation of distinct compilation units - The `-Z no-parallel-backend` will disable parallel compilation of distinct compilation units
- The `-Z llvm-time-trace` option will output a Chrome profiler compatible JSON file - The `-Z llvm-time-trace` option will output a Chrome profiler compatible JSON file
which contains details and timings for LLVM passes. which contains details and timings for LLVM passes.
- The `-C llvm-args=-opt-bisect-limit=<index>` option allows for bisecting LLVM - The `-C llvm-args=-opt-bisect-limit=<index>` option allows for bisecting LLVM