1 2 3 4 5 6 7 8 9 10 11
extern crate gcc; fn main(){ gcc::Config::new() .include("native") .file("native/sha3.c") .file("native/internal.c") .static_flag(true) .compile("libethash.a"); }