Commit d33f382b authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winebuild: Use a 64k page size on ARM64.

parent a3069358
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment