tsc 0.1.0

Read the x86 TSC on stable Rust!
Documentation
1
2
3
4
5
6
7
extern crate cc;

fn main() {
    cc::Build::new()
        .file("src/asm.c")
        .compile("asm");
}