compiler-interrupts
provides Rust API for the Compiler Interrupts library. Check out the Compiler Interrupts main repository for more info.
#[thread_local]
unstable feature, this package currently requires nightly Rust.Add this to your Cargo.toml
.
toml
[dependencies]
compiler-interrupts = "1.0"
Register the Compiler Interrupts handler in your program.
``` rust fn interrupt_handler(ic: i64) { println!("Compiler interrupt called with instruction count: {}", ic); }
fn main() { unsafe { compilerinterrupts::register(1000, 1000, interrupthandler); }
// your code
for _ in 0..100 {
println!("hello world!");
}
} ```
If you have cargo-compiler-interrupts
installed, you can now run cargo build-ci
to start the compilation and integration processes. Check out the documentation for more info about the API.
All issue reports, feature requests, pull requests and GitHub stars are welcomed and much appreciated.
Quan Tran (@quanshousio)
cargo-compiler-interrupts
is available under the MIT license. See the LICENSE file for more info.