winebuild: Use a 64k page size on ARM64.

This commit is contained in:
André Hentschel 2015-05-07 23:37:49 +02:00 committed by Alexandre Julliard
parent a3069358e6
commit d33f382b29

View file

@ -931,11 +931,13 @@ unsigned int get_page_size(void)
{
switch(target_cpu)
{
case CPU_x86: return 4096;
case CPU_x86_64: return 4096;
case CPU_POWERPC: return 4096;
case CPU_ARM: return 4096;
case CPU_ARM64: return 4096;
case CPU_x86:
case CPU_x86_64:
case CPU_POWERPC:
case CPU_ARM:
return 0x1000;
case CPU_ARM64:
return 0x10000;
}
/* unreached */
assert(0);