Add INSTALL for the Go runtime bindings.
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/b1ba3821 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/b1ba3821 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/b1ba3821 Branch: refs/heads/go_bindings_2 Commit: b1ba38211c9b126384be82210e68963ced318ce2 Parents: 26a9f65 Author: Marvin Humphrey <[email protected]> Authored: Sat Nov 8 15:43:05 2014 -0800 Committer: Marvin Humphrey <[email protected]> Committed: Sat Nov 29 21:07:53 2014 -0800 ---------------------------------------------------------------------- runtime/go/INSTALL | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/b1ba3821/runtime/go/INSTALL ---------------------------------------------------------------------- diff --git a/runtime/go/INSTALL b/runtime/go/INSTALL new file mode 100644 index 0000000..c5db488 --- /dev/null +++ b/runtime/go/INSTALL @@ -0,0 +1,19 @@ +Apache Clownfish symbiotic object system -- runtime Go bindings +--------------------------------------------------------------- + +These are temporary installation instructions for developers working on the +Apache Clownfish Go bindings. + +As a prerequisite, install the Go bindings for the Clownfish compiler (CFC). +This will entail cloning the Git repository which is shared by the runtime. + + # After installing CFC, switch to the runtime/go directory. + cd $GOPATH/src/git-wip-us.apache.org/repos/asf/lucy-clownfish.git/runtime/go + +From the `runtime/go` directory within the checkout, run `build.go`: + + go run build.go + go run build.go test + go run build.go install + go run build.go clean +
