Find a file
dependabot-preview[bot] 83b2b0fa8b
Bump cranelift from f3f7cad to 1eb92b1
Bumps [cranelift](https://github.com/CraneStation/cranelift) from `f3f7cad` to `1eb92b1`.
- [Release notes](https://github.com/CraneStation/cranelift/releases)
- [Commits](f3f7cadd01...1eb92b193d)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-06-24 04:58:50 +00:00
build_sysroot Rustup to rustc 1.36.0-nightly (597f43248 2019-04-26) 2019-04-27 17:44:12 +02:00
example Implement bswap intrinsic 2019-06-23 17:32:32 +02:00
patches Implement bswap intrinsic 2019-06-23 17:32:32 +02:00
src Implement bswap intrinsic 2019-06-23 17:32:32 +02:00
.gitignore Add rust to .gitignore 2019-02-26 11:17:47 +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 Bump cranelift from f3f7cad to 1eb92b1 2019-06-24 04:58:50 +00:00
Cargo.toml Fix it 2019-06-11 16:57:59 +02:00
clean_all.sh Stop using xargo for building the sysroot 2018-12-15 16:18:03 +01:00
config.sh Update for faerie section symbols 2019-06-11 16:45:15 +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
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 Some changes to README.md 2019-04-14 10:49:07 +02:00
rust-toolchain Initial commit 2018-06-17 18:05:11 +02:00
test.sh Cleanup 2019-06-11 16:59:42 +02: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 # 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.