4 releases (2 breaking)
0.3.0 | Jun 20, 2023 |
---|---|
0.2.1 | Jun 17, 2023 |
0.2.0 | Jun 7, 2023 |
0.1.0 | Jun 6, 2023 |
#449 in Build Utils
174 downloads per month
Used in metafmt
16KB
291 lines
cgo-rs
A library for build scripts to compile custom Go code, inspired by the excellent cc crate.
It is intended that you use this library from within your build.rs
file by
adding the cgo crate to your build-dependencies
:
[build-dependencies]
cgo = "*"
Examples
The following example will statically compile the Go package and instruct
cargo to link the resulting library (libexample
).
fn main() {
cgo::Build::new()
.package("pkg/example/main.go")
.build("example");
}
lib.rs
:
A library for build scripts to compile custom Go code, inspired by the excellent cc crate.
It is intended that you use this library from within your build.rs
file by
adding the cgo crate to your build-dependencies
:
[build-dependencies]
cgo = "*"
Examples
The following example will statically compile the Go package and instruct
cargo to link the resulting library (libexample
).
fn main() {
cgo::Build::new()
.package("pkg/example/main.go")
.build("example");
}
Dependencies
~180KB