Merge pull request #21 from heyitsanthony/add_mips_support

Add support for mips, mips64
pull/20/head
Anthony Romano 2017-08-11 09:57:29 -07:00 committed by GitHub
commit ca5f9b69f3
2 changed files with 24 additions and 0 deletions

12
bolt_mips64x.go Normal file
View File

@ -0,0 +1,12 @@
// +build mips64 mips64le
package bolt
// maxMapSize represents the largest mmap size supported by Bolt.
const maxMapSize = 0x8000000000 // 512GB
// maxAllocSize is the size used when creating array pointers.
const maxAllocSize = 0x7FFFFFFF
// Are unaligned load/stores broken on this arch?
var brokenUnaligned = false

12
bolt_mipsx.go Normal file
View File

@ -0,0 +1,12 @@
// +build mips 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
// Are unaligned load/stores broken on this arch?
var brokenUnaligned = false