You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#123502 - bjorn3:sync_cg_clif-2024-04-05, r=bjorn3
Subtree sync for rustc_codegen_cranelift
This fixes an ICE when compiling unchecked_shl/unchecked_shr.
r? `@ghost`
`@rustbot` label +A-codegen +A-cranelift +T-compiler
Copy file name to clipboardexpand all lines: compiler/rustc_codegen_cranelift/Readme.md
+1-21
Original file line number
Diff line number
Diff line change
@@ -101,27 +101,7 @@ For additional ways to use rustc_codegen_cranelift like the JIT mode see [usage.
101
101
102
102
## Building and testing with changes in rustc code
103
103
104
-
This is useful when changing code in `rustc_codegen_cranelift` as part of changing [main Rust repository](https://github.com/rust-lang/rust/).
105
-
This can happen, for example, when you are implementing a new compiler intrinsic.
106
-
107
-
Instruction below uses `$RustCheckoutDir` as substitute for any folder where you cloned Rust repository.
108
-
109
-
You need to do this steps to successfully compile and use the cranelift backend with your changes in rustc code:
110
-
111
-
1.`cd $RustCheckoutDir`
112
-
2. Run `python x.py setup` and choose option for compiler (`b`).
* (Optional) You can also build cargo by adding `src/tools/cargo` to previous command.
115
-
4. Copy cargo from a nightly toolchain: `cp $(rustup +nightly which cargo) ./build/host/stage2/bin/cargo`. Note that you would need to do this every time you rebuilt `rust` repository.
116
-
5. Link your new `rustc` to toolchain: `rustup toolchain link stage2 ./build/host/stage2/`.
7. You need to prefix every `./y.sh` (or `y` if you built `build_system/main.rs` as `y`) command by `rustup run stage2` to make cg_clif use your local changes in rustc.
119
-
*`rustup run stage2 ./y.sh prepare`
120
-
*`rustup run stage2 ./y.sh build`
121
-
* (Optional) run tests: `rustup run stage2 ./y.sh test`
122
-
8. Now you can use your cg_clif build to compile other Rust programs, e.g. you can open any Rust crate and run commands like `$RustCheckoutDir/compiler/rustc_codegen_cranelift/dist/cargo-clif build --release`.
123
-
124
-
You can also set `rust-analyzer.rustc.source` to your rust workspace to get rust-analyzer to understand your changes.
This is useful when changing code in `rustc_codegen_cranelift` as part of changing [main Rust repository](https://github.com/rust-lang/rust/).
4
+
This can happen, for example, when you are implementing a new compiler intrinsic.
5
+
6
+
Instruction below uses `$RustCheckoutDir` as substitute for any folder where you cloned Rust repository.
7
+
8
+
You need to do this steps to successfully compile and use the cranelift backend with your changes in rustc code:
9
+
10
+
1.`cd $RustCheckoutDir`
11
+
2. Run `python x.py setup` and choose option for compiler (`b`).
* (Optional) You can also build cargo by adding `src/tools/cargo` to previous command.
14
+
4. Copy cargo from a nightly toolchain: `cp $(rustup +nightly which cargo) ./build/host/stage2/bin/cargo`. Note that you would need to do this every time you rebuilt `rust` repository.
15
+
5. Link your new `rustc` to toolchain: `rustup toolchain link stage2 ./build/host/stage2/`.
7. You need to prefix every `./y.sh` (or `y` if you built `build_system/main.rs` as `y`) command by `rustup run stage2` to make cg_clif use your local changes in rustc.
18
+
*`rustup run stage2 ./y.sh prepare`
19
+
*`rustup run stage2 ./y.sh build`
20
+
* (Optional) run tests: `rustup run stage2 ./y.sh test`
21
+
8. Now you can use your cg_clif build to compile other Rust programs, e.g. you can open any Rust crate and run commands like `$RustCheckoutDir/compiler/rustc_codegen_cranelift/dist/cargo-clif build --release`.
22
+
23
+
You can also set `rust-analyzer.rustc.source` to your rust workspace to get rust-analyzer to understand your changes.
0 commit comments