Find a file
bjorn3 0d16dcfce1 Don't try to store func_addr for FnDef in trans_const_value
This would crash, because the place provides 0 bytes of space for FnDef
2019-02-03 14:11:24 +01:00
build_sysroot Misc changes 2019-02-03 11:25:56 +01:00
example Use mini_core::panic with jit 2019-01-26 15:16:58 +01:00
patches Add some patches for libstd 2019-02-03 11:26:44 +01:00
src Don't try to store func_addr for FnDef in trans_const_value 2019-02-03 14:11:24 +01:00
.gitignore Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01:00
.travis.yml Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01:00
abc.cpp Implement line debuginfo 2019-01-26 11:59:57 +01:00
Cargo.lock Update Cargo.lock 2019-02-03 11:08:25 +01:00
Cargo.toml Use IndexSet and keep full source info in set_debug_loc 2019-01-26 11:59:57 +01:00
clean_all.sh Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01:00
config.sh Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01:00
copy.clif Fix some bugs 2018-08-08 10:26:25 +02:00
flamegraph.sh Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01: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
prepare.sh Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01:00
Readme.md Update Readme.md 2019-01-26 17:03:35 +01:00
rust-toolchain Initial commit 2018-06-17 18:05:11 +02:00
test.sh Implement line debuginfo 2019-01-26 11:59:57 +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.

error[E0463]: can't find crate for std while compiling a no_std crate

If you use RUSTFLAGS to pass -Zcodegen-backend to rustc, cargo will compile build-dependencies with those flags too. Because this project doesn't support libstd yet, that will result in an error. I don't know of any way to fix this. :(