Reduced arm64 page size to 16 KiB
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-07-08 23:32:42 +02:00
parent e3444b3626
commit 2bd5b81ffb
Signed by: ed
GPG key ID: 49226B848C78F6C8

View file

@ -4,7 +4,7 @@ package build
func (build *Build) MemoryAlign() int { func (build *Build) MemoryAlign() int {
switch build.Arch { switch build.Arch {
case ARM: case ARM:
return 0x10000 return 0x4000
default: default:
return 0x1000 return 0x1000
} }