compiler-rt-builtins 0.1.0

The LLVM compiler-rt builtins source, conveniently packaged as a Rust crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# compiler-rt-builtins

The LLVM compiler-rt builtins source, conveniently packaged as a Rust crate.

```toml
[dependencies]
compiler-rt-builtins = "0.1"
```

In your `build.rs`:

```rust
println!("cargo:rustc-link-lib=compiler-rt-builtins");
```

Created because when compiling C code to `wasm32-unknown-unknown`, some builtins are missing from Rust's `compiler_builtins`. Might have other uses too, who knows?