#build-dependencies #compile #script #build-time #cargo #compiler #go

build gobuild

A build-time dependency for Cargo build scripts to invoke the go compiler to compile go code into a static archive/dynamic library to be linked into Rust code

2 releases

0.1.0-alpha.2 Apr 12, 2020
0.1.0-alpha.1 Apr 10, 2020

#495 in Build Utils

Download history 456/week @ 2024-01-20 500/week @ 2024-01-27 357/week @ 2024-02-03 362/week @ 2024-02-10 555/week @ 2024-02-17 681/week @ 2024-02-24 428/week @ 2024-03-02 366/week @ 2024-03-09 555/week @ 2024-03-16 465/week @ 2024-03-23 543/week @ 2024-03-30 564/week @ 2024-04-06 710/week @ 2024-04-13 596/week @ 2024-04-20 454/week @ 2024-04-27 845/week @ 2024-05-04

2,702 downloads per month
Used in caddyfile-parser

MIT license

18KB
317 lines

gobuild

A library to compile go code into a Rust library/application. This library takes inspiration from the cc crate.

Using gobuild

First, you'll want to both add a build script for your crate (build.rs) and also add this crate to your Cargo.toml via:

[build-dependencies]
gobuild = "0.1.0-alpha.1"

Next, update the build.rs to something like:

// build.rs

fn main() {
    gobuild::Build::new()
        .file("hello.go")
        .compile("hello");
}

This will produce a libhello.h and libhello.a in OUT_DIR.


lib.rs:

A library for build scripts to compile go Code. It's like the cc crate for go.

Add this library as a build-dependency in Cargo.toml:

[build-dependencies]
gobuild = "0.1.0-alpha.1"

Examples

Use the Build struct to compile hello.go:

fn main() {
    gobuild::Build::new()
        .file("hello.go")
        .compile("foo");
}

This will generate a libhello.h and libhello.a in OUT_DIR.

Consider combining this with bindgen to generate a Rust wrapper for the header.

Dependencies

~175KB