nguquen
Results
2
comments of
nguquen
Hi @ihciah i tried your latest change and it works. However, i want to make an improvement on GoCompiler, to make `build` as default implementation in GoCompiler trait, please help...
hi @hellais , here's what i'm using for `build.rs`: ``` fn main() { rust2go::Builder::new() .with_go_compiler(CrossGoCompiler {}) .with_go_src("./go") .build(); } #[derive(Debug, Clone, Copy)] pub struct CrossGoCompiler; impl GoCompiler for CrossGoCompiler {...