Go to file
bjorn3 958c58545f Only codegen a trap for functions with uninhabited arguments
Fixes #847
2019-12-28 11:10:21 +01:00
build_sysroot Run libcore tests 2019-11-24 15:44:39 +01:00
crate_patches Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
example Rustup to rustc 1.41.0-nightly (6d77e45f0 2019-12-04) 2019-12-05 21:00:57 +01:00
patches Rustup to rustc 1.42.0-nightly (9ae6cedb8 2019-12-23) 2019-12-24 12:27:11 +01:00
src Only codegen a trap for functions with uninhabited arguments 2019-12-28 11:10:21 +01:00
.gitignore Libtest support 2019-08-09 12:46:24 +02:00
.travis.yml Fix travis ci config 2019-10-19 11:25:01 +02:00
Cargo.lock Directly depend on cranelift_{codegen,frontend} 2019-12-24 12:43:20 +01:00
Cargo.toml Directly depend on cranelift_{codegen,frontend} 2019-12-24 12:43:20 +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
Readme.md Update Readme.md 2019-09-20 09:54:23 +02:00
abc.cpp Implement line debuginfo 2019-01-26 11:59:57 +01:00
cargo.sh Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
clean_all.sh Remove simple-raytracer too in clean_all.sh 2019-09-12 20:22:09 +02:00
config.sh Rustup to rustc 1.40.0-nightly (2daa404e9 2019-10-02) 2019-10-03 17:22:01 +02: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
prepare.sh Rustup to rustc 1.40.0-nightly (10a52c25c 2019-10-24) 2019-10-25 21:41:24 +02:00
rust-toolchain Initial commit 2018-06-17 18:05:11 +02:00
test.sh Rustup to rustc 1.42.0-nightly (fc5deca21 2019-12-21) 2019-12-22 16:53:06 +01:00

Readme.md

WIP Cranelift codegen backend for rust

⚠⚠⚠ Threads and certain kinds of FFI don't work yet. ⚠⚠⚠

Building

$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
$ cd rustc_codegen_cranelift
$ ./prepare.sh # download and patch sysroot src and install hyperfine for benchmarking
$ ./test.sh

Usage

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

Cargo

$ $cg_clif_dir/cargo.sh run

Rustc

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

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.