Go to file
2019-03-07 18:31:39 +01:00
build_sysroot Don't sign commits from patches in sysroot 2019-02-17 17:42:12 -08:00
example Rename load_value_pair to load_scalar_pair and fix dynamic dispatch with arbitrary self types 2019-03-03 12:19:55 +01:00
patches Remove 0006-alloc-Disable-some-unsupported-stuff.patch 2019-03-06 20:56:53 +01:00
src Fix atomic intrinsics 2019-03-06 21:09:35 +01:00
.gitignore Add rust to .gitignore 2019-02-26 11:17:47 +01:00
.travis.yml
abc.cpp
Cargo.lock Bump rand_os from 0.1.2 to 0.1.3 (#404) 2019-03-07 18:31:39 +01:00
Cargo.toml Bump libc from 0.2.49 to 0.2.50 (#400) 2019-03-06 14:32:11 +01:00
clean_all.sh
config.sh
copy.clif
flamegraph.sh
LICENSE-APACHE
LICENSE-MIT
prepare.sh
Readme.md Libstd and varargs are now supported. 2019-02-16 12:21:22 +01:00
rust-toolchain
test.sh Rename load_value_pair to load_scalar_pair and fix dynamic dispatch with arbitrary self types 2019-03-03 12:19:55 +01:00

Work in progress cranelift codegen backend for rust

⚠⚠⚠ This doesn't do much useful yet ⚠⚠⚠

Building

$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
$ cd rustc_codegen_cranelift
$ ./prepare.sh # downloads and patches sysroot src and installs hyperfine for benchmarking
$ ./test.sh

Usage

$cg_clif_dir is the directory you cloned this repo into in the following instruction.

Rustc

$ rustc -Cpanic=abort -Zcodegen-backend=$cg_clif_dir/target/debug/librustc_codegen_cranelift.so my_crate.rs

Cargo

$ RUSTFLAGS="-Cpanic=abort -Zcodegen-backend=$cg_clif_dir/target/debug/librustc_codegen_cranelift.dylib --sysroot $cg_clif_dir/build_sysroot/sysroot" cargo run

Not yet supported

Troubleshooting

Can't compile

Try updating your nightly compiler. You can try to use an nightly a day or two older if updating rustc doesn't fix it. If you still can't compile it, please fill an issue.