2017-11-16 15:49:40 -05:00
|
|
|
// Package lvgen contains the instructions for regenerating the libvirt
|
|
|
|
// bindings. We do this by parsing the remote_protocol.x file included in the
|
|
|
|
// libvirt sources. Bindings will be generated if you run `go generate` in this
|
2017-11-14 18:59:55 -05:00
|
|
|
// directory.
|
2017-11-16 15:49:40 -05:00
|
|
|
package lvgen
|
2017-11-14 18:59:55 -05:00
|
|
|
|
|
|
|
// Before running `go generate`:
|
|
|
|
// 1) Make sure goyacc is installed from golang.org/x/tools (you can use this
|
|
|
|
// command: `go get golang.org/x/tools/...`)
|
|
|
|
// 2) Set the environment variable LIBVIRT_SOURCE to point to the top level
|
|
|
|
// directory containing the version of libvirt for which you want to generate
|
|
|
|
// bindings.
|
|
|
|
|
2017-11-02 19:42:44 -04:00
|
|
|
//go:generate goyacc sunrpc.y
|
|
|
|
//go:generate go run gen/main.go
|