mirror of https://github.com/go-gitea/gitea.git
fix broken caused by boltdb in mips/mipsle (#1107)
This commit is contained in:
parent
ef13bbaf7d
commit
6bdfadf4a9
|
@ -0,0 +1,11 @@
|
||||||
|
// +build mips
|
||||||
|
package bolt
|
||||||
|
|
||||||
|
// maxMapSize represents the largest mmap size supported by Bolt.
|
||||||
|
const maxMapSize = 0x40000000 // 1GB
|
||||||
|
|
||||||
|
// maxAllocSize is the size used when creating array pointers.
|
||||||
|
const maxAllocSize = 0xFFFFFFF
|
||||||
|
|
||||||
|
// brokenUnaligned Are unaligned load/stores broken on this arch?
|
||||||
|
var brokenUnaligned = false
|
|
@ -0,0 +1,11 @@
|
||||||
|
// +build mipsle
|
||||||
|
package bolt
|
||||||
|
|
||||||
|
// maxMapSize represents the largest mmap size supported by Bolt.
|
||||||
|
const maxMapSize = 0x40000000 // 1GB
|
||||||
|
|
||||||
|
// maxAllocSize is the size used when creating array pointers.
|
||||||
|
const maxAllocSize = 0xFFFFFFF
|
||||||
|
|
||||||
|
// brokenUnaligned Are unaligned load/stores broken on this arch?
|
||||||
|
var brokenUnaligned = false
|
Loading…
Reference in New Issue