mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
ea8c8cdaf3
* Use local folder for xgo * Always do crosscompile and testing to fail early * Added mips* values for boltdb In order to get master building again I have applied these 2 additional files to boltdb. This should get dropped when https://github.com/boltdb/bolt/issues/656 gets solved.
9 lines
236 B
Go
9 lines
236 B
Go
// +build mips64
|
|
package bolt
|
|
|
|
// maxMapSize represents the largest mmap size supported by Bolt.
|
|
const maxMapSize = 0xFFFFFFFFFFFF // 256TB
|
|
|
|
// maxAllocSize is the size used when creating array pointers.
|
|
const maxAllocSize = 0x7FFFFFFF
|