Repository: lucy-clownfish Updated Branches: refs/heads/master cd536bbf4 -> bc67c0695
Disable thread support under Go. Err's design relies on thread-local storage, which is not compatible with Go's goroutines. Resolving the Clownfish and Go concurrency models is left as a TODO. Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/1697a39c Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/1697a39c Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/1697a39c Branch: refs/heads/master Commit: 1697a39c8167d7ff82c8123bef72d4f457bd6595 Parents: cd536bb Author: Marvin Humphrey <[email protected]> Authored: Wed Sep 30 18:44:59 2015 -0700 Committer: Marvin Humphrey <[email protected]> Committed: Wed Sep 30 18:44:59 2015 -0700 ---------------------------------------------------------------------- runtime/go/build.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/1697a39c/runtime/go/build.go ---------------------------------------------------------------------- diff --git a/runtime/go/build.go b/runtime/go/build.go index 951d846..abc57a8 100644 --- a/runtime/go/build.go +++ b/runtime/go/build.go @@ -111,7 +111,8 @@ func configure() { } if !current(charmonizerEXE, charmonyH) { runCommand("./charmonizer", "--cc=cc", "--enable-c", "--host=go", - "--enable-makefile", "--", "-std=gnu99", "-O2") + "--enable-makefile", "--disable-threads", "--", "-std=gnu99", + "-O2") } }
