1 2 3 4 5
use std::process::Command; fn main() { Command::new("cc").arg("src/ffi.c").status().unwrap(); }