Go to file
dependabot[bot] 870378c452
Bump backtrace from 0.3.11 to 0.3.12
Bumps [backtrace](https://github.com/alexcrichton/backtrace-rs) from 0.3.11 to 0.3.12.
- [Release notes](https://github.com/alexcrichton/backtrace-rs/releases)
- [Commits](https://github.com/alexcrichton/backtrace-rs/compare/0.3.11...0.3.12)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-12-13 05:45:53 +00:00
alloc_system Rustup to rustc 1.32.0-nightly (ca79ecd69 2018-11-11) 2018-11-12 19:37:54 +01:00
example Remove a workaround for icmp.i8/i16 not having an encoding 2018-11-17 15:02:57 +01:00
patches Restructure scripts and add flamegraph generator 2018-12-03 18:50:00 +01:00
src Some refactorings for codegen_mono_items 2018-12-12 16:01:34 +01:00
xargo Rustup to rustc 1.32.0-nightly (ca79ecd69 2018-11-11) 2018-11-12 19:37:54 +01:00
.gitignore Some more changes 2018-10-10 19:04:20 +02:00
.travis.yml Restructure scripts and add flamegraph generator 2018-12-03 18:50:00 +01:00
Cargo.lock Bump backtrace from 0.3.11 to 0.3.12 2018-12-13 05:45:53 +00:00
Cargo.toml Bump libc from 0.2.44 to 0.2.45 2018-12-11 10:45:03 +00:00
config.sh Restructure scripts and add flamegraph generator 2018-12-03 18:50:00 +01:00
copy.clif Fix some bugs 2018-08-08 10:26:25 +02:00
flamegraph.sh Restructure scripts and add flamegraph generator 2018-12-03 18:50:00 +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_libcore.sh Restructure scripts and add flamegraph generator 2018-12-03 18:50:00 +01:00
Readme.md Update SIMD entry in Readme 2018-11-27 11:21:20 +01:00
rust-toolchain Initial commit 2018-06-17 18:05:11 +02:00
test.sh Restructure scripts and add flamegraph generator 2018-12-03 18:50:00 +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
$ rustup override set nightly # This uses unstable api's which will never be stabilized
$ cargo install xargo         # Used for building the sysroot
$ cargo install hyperfine     # Used for benchmarking in build.sh
$ cargo build

Usage

$ rustc -Zcodegen-backend=$(pwd)/target/debug/librustc_codegen_cranelift.so my_crate.rs

Build sysroot and test

$ rustup component add rust-src # Make sure the sysroot source is available
$ ./prepare_libcore.sh          # Patch the sysroot source for some not yet supported things
$ ./build.sh

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. :(