Empowering everyone to build reliable and efficient software.
Go to file
2024-08-09 16:13:39 +00:00
.github Run abi-cafe tests for pull requests too 2024-08-07 09:35:31 +00:00
.vscode Use rust-analyzer.rustc.source to get r-a working with rustc 2024-01-04 15:24:51 +01:00
.zed Added project-specific Zed IDE settings 2024-07-16 11:14:04 -04:00
build_system Couple of minor cleanups 2024-08-09 16:13:39 +00:00
docs Move the rustc testing section out of the readme 2024-03-31 09:01:37 +00:00
example Add support for raw-dylib 2024-08-08 13:51:58 -07:00
patches Stop using a custom Cargo.toml and Cargo.lock for the standard library 2024-08-09 15:59:30 +00:00
scripts Fix rustc test suite 2024-08-08 21:54:20 +02:00
src Add support for raw-dylib 2024-08-08 13:51:58 -07:00
.cirrus.yml Fix caching on Cirrus CI 2024-04-07 16:36:41 +00:00
.gitattributes Set diff=rust git attribute for rust files 2020-11-08 16:36:52 +01:00
.gitignore Use cargo in y.sh 2024-05-12 12:59:10 +00:00
Cargo.lock Add support for raw-dylib 2024-08-08 13:51:58 -07:00
Cargo.toml Add support for raw-dylib 2024-08-08 13:51:58 -07:00
clean_all.sh Allow building the build system using cargo 2023-06-13 16:39:59 +00:00
config.txt Add support for raw-dylib 2024-08-08 13:51:58 -07:00
LICENSE-APACHE Create LICENSE-APACHE 2018-06-22 19:33:35 +02:00
LICENSE-MIT Add LICENSE-MIT 2018-06-22 19:34:27 +02:00
Readme.md Sync from rust c1a6199e9d 2024-07-25 15:08:19 +00:00
rust-toolchain Rustup to rustc 1.82.0-nightly (3e9bd8b56 2024-08-08) 2024-08-09 15:38:46 +00:00
rustfmt.toml Update use declarations formatting options. 2024-07-29 08:26:08 +10:00
test.sh Allow building the build system using cargo 2023-06-13 16:39:59 +00:00
y.cmd Use cargo in y.sh 2024-05-12 12:59:10 +00:00
y.ps1 Use cargo in y.sh 2024-05-12 12:59:10 +00:00
y.sh Use cargo in y.sh 2024-05-12 12:59:10 +00:00

Cranelift codegen backend for rust

The goal of this project is to create an alternative codegen backend for the rust compiler based on Cranelift. This has the potential to improve compilation times in debug mode. If your project doesn't use any of the things listed under "Not yet supported", it should work fine. If not please open an issue.

Download using Rustup

The Cranelift codegen backend is distributed in nightly builds on Linux and x86_64 macOS. If you want to install it using Rustup, you can do that by running:

$ rustup component add rustc-codegen-cranelift-preview --toolchain nightly

Once it is installed, you can enable it with one of the following approaches:

  • CARGO_PROFILE_DEV_CODEGEN_BACKEND=cranelift cargo +nightly build -Zcodegen-backend
  • Add the following to .cargo/config.toml:
    [unstable]
    codegen-backend = true
    
    [profile.dev]
    codegen-backend = "cranelift"
    
  • Add the following to Cargo.toml:
    # This line needs to come before anything else in Cargo.toml
    cargo-features = ["codegen-backend"]
    
    [profile.dev]
    codegen-backend = "cranelift"
    

Precompiled builds

You can also download a pre-built version from the releases page. Extract the dist directory in the archive anywhere you want. If you want to use cargo clif build instead of having to specify the full path to the cargo-clif executable, you can add the bin subdirectory of the extracted dist directory to your PATH. (tutorial for Windows, and for Linux/MacOS).

Building and testing

If you want to build the backend manually, you can download it from GitHub and build it yourself:

$ git clone https://github.com/rust-lang/rustc_codegen_cranelift
$ cd rustc_codegen_cranelift
$ ./y.sh prepare
$ ./y.sh build

To run the test suite replace the last command with:

$ ./test.sh

For more docs on how to build and test see build_system/usage.txt or the help message of ./y.sh.

Platform support

OS \ architecture x86_64 AArch64 Riscv64 s390x (System-Z)
Linux 1 1
FreeBSD 1
AIX 2 N/A N/A 2
Other unixes
macOS N/A N/A
Windows 1 N/A N/A

: Fully supported and tested : Maybe supported, not tested : Not supported at all

Not all targets are available as rustup component for nightly. See notes in the platform support matrix.

Usage

rustc_codegen_cranelift can be used as a near-drop-in replacement for cargo build or cargo run for existing projects.

Assuming $cg_clif_dir is the directory you cloned this repo into and you followed the instructions (y.sh prepare and y.sh build or test.sh).

In the directory with your project (where you can do the usual cargo build), run:

$ $cg_clif_dir/dist/cargo-clif build

This will build your project with rustc_codegen_cranelift instead of the usual LLVM backend.

For additional ways to use rustc_codegen_cranelift like the JIT mode see usage.md.

Building and testing with changes in rustc code

See rustc_testing.md.

Not yet supported

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.


  1. Not available as rustup component for nightly. You can build it yourself. ↩︎

  2. XCOFF object file format is not supported. ↩︎