Go to file
bjorn3 69526d464f Implement some float simd intrinsics 2019-07-30 14:37:20 +02:00
build_sysroot Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
crate_patches Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
example Implement some float simd intrinsics 2019-07-30 14:37:20 +02:00
patches Patch core_arch to tell programs that cpuid is not supported 2019-07-29 14:35:42 +02:00
src Implement some float simd intrinsics 2019-07-30 14:37:20 +02:00
.gitignore Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
.travis.yml [CI] Only cache .cargo dir 2019-07-03 16:27:06 +02:00
Cargo.lock Update dependencies 2019-07-28 09:24:27 +02:00
Cargo.toml Use own branch of clif instead of local checkout 2019-07-26 12:02:51 +02: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-07-26 11:47:27 +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 Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
config.sh Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +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 Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00
rust-toolchain Initial commit 2018-06-17 18:05:11 +02:00
test.sh Test rust-lang/regex example shootout-regex-dna 2019-07-30 13:37:54 +02:00

Readme.md

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 # 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.

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

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.