bolt icon indicating copy to clipboard operation
bolt copied to clipboard

Add support for Native Client

Open dcu opened this issue 9 years ago • 1 comments

I'd like to use a go library in a ChromeOS app

I got the following error when trying to compile:

$ GOOS=nacl GOARCH=amd64p32 go build
# sdk/vendor/github.com/boltdb/bolt
vendor/github.com/boltdb/bolt/db.go:97: undefined: maxMapSize
vendor/github.com/boltdb/bolt/db.go:97: invalid array bound maxMapSize

dcu avatar Jun 20 '16 23:06 dcu

NaCl itself seems to support (some forms of?) mmap, but Go does not expose that functionality.

tv42 avatar Sep 02 '16 23:09 tv42