TomBebbington / jit.rs

LibJIT wrapper for Rust
http://tombebbington.github.io/jit.rs/jit/index.html
MIT License
59 stars 11 forks source link

Allow using libjit-sys with Rust 1.0 #9

Closed emk closed 9 years ago

emk commented 9 years ago

This will provide low-level access to libjit-sys to people using Rust 1.0. For the fun, high-level stuff, they'll still need to switch to the nightly branch. :-)

To do this, I needed to do two things:

I tested this using multirust:

cd jit.rs/sys
multirust override stable
cargo test

...and I tested the main library as usual using the nightly build:

cd ..
cargo test
emk commented 9 years ago

Thank you for the merge! I also have a unit test and an example program for sys which will be along in a minute.