6 lines
101 B
Rust
6 lines
101 B
Rust
extern crate gcc;
|
|
|
|
fn main() {
|
|
gcc::Config::new().file("src/double.c").compile("libdouble.a");
|
|
}
|