1 2 3 4 5 6 7 8 9 10 11 12
extern crate cc; extern crate regex; mod cpu; #[cfg(feature = "rv32fd")] mod softfloat; fn main() { cpu::build(); #[cfg(feature = "rv32fd")] softfloat::build(); }