gogo
is an experimental alternative build tool for the Go programming language.
-
An alternative build tool that is independent of Go itself.
-
Extensible, ie. other Go programs should be able to build Go code without having to shell out to the
go
tool, other code can reusegogo
components to make their own build automation. -
Project based, not package based, supporting some (as yet to be defined) package version system.
-
Potentially support code generation phases and other pre and post targets.
The gogo
command is go get
able
go get github.com/davecheney/gogo/gogo
Create a project workspace and a .gogo
subdirectory. The .gogo
subdirectory is used by the gogo
tool to locate the root of your project.
mkdir -p $PROJECT/.gogo
Inside your gogo
project, you should arrange your Go source, and its dependencies into the usual $PROJECT/src
subfolder.
As a aide to go
tool users, if the current working directory falls within an existing $GOPATH, gogo
will use that $GOPATH entry as its project root. Some features like incremental builds will be disabled in this mode.
You can also use your existing $GOPATH directory as a project location, just mkdir -p $GOPATH/.gogo
. gogo
will not overwrite the output of the go
tool.
gogo
has three logging levels, DEBUG, INFO, and ERROR. The following flags control logging output.
-q suppresses log messages below ERROR level
-v enables log messges below INFO level
gogo
can build a package or a command, using the build
subcommand. When commands are built, they are placed in $PROJECT/bin/$GOOS/$GOARCH/
(this path is subject to change)
cd $PROJECT # or a subdirectory of your project
gogo build $SOME_PACKAGE_OR_COMMAND
gogo
also supports a -a
flag which will build all packages inside your $PROJECT/src directory.
cd $PROJECT
gogo build -a
gogo
can invoke the standard testing
package tests. Note, external tests are not yet supported.
cd $PROJECT
gogo test $SOME_PACKAGE
gogo
also supports the -a
flag which will build and test each package inside your $PROJECT/src directory.
cd $PROJECT
gogo test -a
godoc.org/github.com/davecheney/gogo
A mailing list for gogo
, gogo-users
has been created, https://groups.google.com/d/forum/gogo-users
http://starlogs.net/#davecheney/gogo
- Q. Can
gogo
build to Go standard library ? A. No. - Q. Will relative imports be supported ? A. No, they are evil.
- better package parsing (support all file types)
- improve cgo support
- use the correct archchar for 5,6, and 8g.
- build tags support
- support external tests in package, XTestGoFiles
- implement incremental builds; only build what needs to be built
gogo
is licenced under a BSD licence. Various parts of gogo
are copyright the Go Authors 2012.