2018-07-18 04:55:32 -05:00
|
|
|
# Work in progress cranelift codegen backend for rust
|
|
|
|
|
2018-10-10 12:12:41 -05:00
|
|
|
> ⚠⚠⚠ This doesn't do much useful yet ⚠⚠⚠
|
2018-07-18 04:55:32 -05:00
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
```bash
|
2018-07-18 06:35:03 -05:00
|
|
|
$ git clone https://github.com/bjorn3/rustc_codegen_cranelift.git
|
2018-07-18 04:55:32 -05:00
|
|
|
$ cd rustc_codegen_cranelift
|
2018-07-19 10:59:13 -05:00
|
|
|
$ rustup override set nightly
|
2018-10-08 12:46:07 -05:00
|
|
|
$ cargo install xargo
|
2018-07-18 04:55:32 -05:00
|
|
|
$ 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 06:35:03 -05:00
|
|
|
## Building libcore
|
|
|
|
|
|
|
|
```bash
|
2018-07-19 11:41:37 -05:00
|
|
|
$ rustup component add rust-src
|
|
|
|
$ ./prepare_libcore.sh
|
2018-07-18 06:35:03 -05:00
|
|
|
$ ./build.sh
|
|
|
|
```
|
|
|
|
|
2018-07-18 04:55:32 -05:00
|
|
|
## Not yet supported
|
|
|
|
|
2018-07-19 12:08:37 -05:00
|
|
|
* Checked binops
|
|
|
|
* Drop glue
|
2018-07-18 04:55:32 -05:00
|
|
|
|
2018-07-19 12:08:37 -05:00
|
|
|
* Other call abi's
|
|
|
|
* Sub slice
|
2018-07-18 04:55:32 -05:00
|
|
|
|
2018-07-19 12:08:37 -05:00
|
|
|
* Inline assembly
|
|
|
|
* Custom sections
|