rust/Readme.md

44 lines
855 B
Markdown
Raw Normal View History

# Work in progress cranelift codegen backend for rust
> ⚠⚠⚠ This doesn't do anything useful yet ⚠⚠⚠
## Building
```bash
2018-07-18 13:35:03 +02:00
$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
$ cd rustc_codegen_cranelift
$ rustup override set nightly
$ git submodule update --init
$ cargo build
```
## Usage
```bash
$ rustc -Zcodegen-backend=$(pwd)/target/debug/librustc_codegen_cranelift.so my_crate.rs --crate-type lib -Og
```
2018-07-18 13:35:03 +02:00
## Building libcore
```bash
$ rustup component add rust-src
$ ./prepare_libcore.sh
2018-07-18 13:35:03 +02:00
$ ./build.sh
```
## Not yet supported
2018-07-19 19:08:37 +02:00
* Checked binops
* Drop glue
2018-07-19 19:08:37 +02:00
* Other call abi's
* Sub slice
2018-07-19 19:08:37 +02:00
* Inline assembly
* Custom sections
2018-07-18 16:29:40 +02:00
## Known errors
2018-07-19 19:08:37 +02:00
* cranelift-module api seems to be used wrong, thus causing panic for some consts
* cranelift-codegen doesn't have encodings for some instructions for types smaller than I32