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/e9cd71a9 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/e9cd71a9 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/e9cd71a9 Branch: refs/heads/go_bindings_1 Commit: e9cd71a9737737f1a8ebb4af86b3ce935564ecd8 Parents: dfb93e5 Author: Marvin Humphrey <[email protected]> Authored: Sat Nov 8 15:43:05 2014 -0800 Committer: Marvin Humphrey <[email protected]> Committed: Fri Nov 14 17:18:58 2014 -0800 ---------------------------------------------------------------------- runtime/go/INSTALL | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/e9cd71a9/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 +
