gecko-dev/js/rust
2017-11-17 12:12:39 +01:00
..
etc
src Bug 1417844 part 2 - Remove JSVersion from CompileOptions, CompartmentBehaviors, scripts. r=evilpie 2017-11-17 12:12:39 +01:00
tests
.gitignore
build.rs Bug 1325632 - part 3 - compile rust bindings with -fno-sized-deallocation; r=ted.mielczarek 2017-11-15 14:53:17 -04:00
Cargo.lock Bug 1414030 - Update the bindgen dependency for js/rust. r=emilio 2017-11-02 12:08:00 -04:00
Cargo.toml Bug 1414030 - Update the bindgen dependency for js/rust. r=emilio 2017-11-02 12:08:00 -04:00
CMakeLists.txt
README.md

The js Crate: Rust Bindings to SpiderMonkey

User Documentation

Building

To build a release version of SpiderMonkey and the Rust code with optimizations enabled:

$ cargo build --release

To build with SpiderMonkey's DEBUG checks and assertions:

$ cargo build --features debugmozjs

Raw FFI bindings to JSAPI are machine generated with rust-lang-nursery/rust-bindgen, and requires libclang >= 3.9. See ./build.rs for details.

Cargo Features

  • debugmozjs: Create a DEBUG build of SpiderMonkey with many extra assertions enabled. This is decoupled from whether the crate and its Rust code is built in debug or release mode.

  • promises: Enable SpiderMonkey native promises.

  • nonzero: Leverage the unstable NonZero type. Requires nightly Rust.

Testing

Make sure to test both with and without the debugmozjs feature because various structures have different sizes and get passed through functions differently at the ABI level! At minimum, you should test with debugmozjs to get extra assertions and checking.

$ cargo test
$ cargo test --features debugmozjs